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=248
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19256,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=249",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=247"
    },
    "data": [
        {
            "id": "kulke:61389",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "47/37/27/15 €",
                        "sv": "47/37/27/15 €",
                        "en": "47/37/27/15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3539199",
                        "sv": "https://www.lippu.fi/eventseries/name-3539199",
                        "en": "https://www.lippu.fi/eventseries/name-3539199"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6264,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-27T07:13:36.509089Z",
                    "last_modified_time": "2024-02-06T13:23:03.354818Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740263.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6264/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-27T07:13:36.457821Z",
            "last_modified_time": "2024-04-05T17:13:42.824102Z",
            "date_published": null,
            "start_time": "2024-02-06T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/47C206F393DF17E908836D33D3CDC776/_nn_m_ret_ilu_Valle_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/47C206F393DF17E908836D33D3CDC776/_nn_m_ret_ilu_Valle_",
                "en": "http://www.savoyteatteri.fi/en/events/event/47C206F393DF17E908836D33D3CDC776/_nn_m_ret_ilu_Valle_"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "description": {
                "fi": "<p>Savoy-teatterin saamelaisten kansallispäivän konsertissa kuullaan tuoreita saamelaismusiikin tuulia tämän hetken kiinnostavimpien muusikoiden esittämänä. Lavalla rap-artisti Áilu Valle sekä joikua, moderneja äänimaailmoja ja videotaidetta upeasti yhdistelevä Ánnámáret yhtyeineen.</p><p>Ánnámáret eli Anna Näkkäläjärvi-Länsman on joikaaja ja muusikko, joka saamelaisena kuuluu arktiseen alkuperäiskansaan. Ánnámáretin tunnistettava joikuääni ja -tulkinnat ovat suoraa jatkumoa jo hänen esivanhempiensa porosaamelaiseen kulttuuriin.</p><p>Viime vuosina Ánnámáret on tutkinut sukujensa joikuperinnettä tutkimalla vanhoja arkistotallenteita. Tämän työn tuloksena hän loi monitaiteellisen ryhmänsä kanssa teoksen Nieguid duovdagat - Dreamscapes, jossa joiku, jouhikko ja elektroninen musiikki yhdistyvät videotaiteeseen. Nieguid duovdagat -albumi toi Ánnámáretin maailmanmusiikkigenren tietoisuuteen ja Ánnámáret työryhmineen valittiin viralliseksi Womex 2023 -showcase-artistiksi.</p><p>Ánnámáret saa inspiraation musiikkiinsa Saamenmaan luonnosta sekä saamelaisesta kulttuurista ja elämäntavasta. Hän tekee musiikkia ja asuu pohjoisessa poronhoitajaperheensä kanssa. Ánnámáretin vahvuus taiteilijana kumpuaa siitä, että hän on kasvanut kahden kulttuurin välissä ja ymmärtää siten näitä kulttuureja ja niiden törmäyksiä ja yhtäläisyyksiä.</p><p>Ánnámáret, joiku<br>Ilkka Heinonen, jouhikko<br>Turkka Inkilä, live-elektroniikka, shakuhachi-huilu<br>Marja Viitahuhta, videotaide</p><p>-----</p><p>Áilu Valle on Inarissa vaikuttava rap-artisti, joka räppää pohjoissaameksi, suomeksi ja englanniksi. Vallen tyylissä yhdistyvät kantaaottava sanoma, teknisyys ja tunne. Hän on kotoisin parinkymmenen ihmisen pienestä porokylästä Kaamasmukasta, Utsjoen kunnasta.</p><p>Áilu Valle on julkaissut kolme sooloalbumia pohjoissaameksi, \"Dušši dušše duššat\" (2012), \"7\" (2015) ja \"Viidon sieiddit\" (2019). Valle on palkittu mm. Taiteen edistämiskeskuksen myöntämällä Lastenkulttuurin Valtionpalkinnolla vuonna 2019, sekä Vuoden parhaan biisinkirjoittajan / säveltäjän palkinnolla, jonka myönsivät Sámi Music Awards ja Norjan TONO vuonna 2020. Savoy-teatterissa Valle esiintyy soolona.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>På Savoyteaterns konsert på samernas nationaldag kommer publiken att få höra friska vindar från den samiska musikscenen framförda av vår tids mest intressanta musiker. På scenen ses rapparen Áilu Valle och Ánnámáret, som kombinerar jojk, moderna ljudlandskap och videokonst på ett vackert sätt, tillsammans med sina band.</p><p>Jojkaren och musikern Ánnámáret, eller Anna Näkkäläjärvi-Länsman, är same och därmed en representant för det arktiska ursprungsfolket. Ánnámárets karakteristiska jojkröst och tolkningar är ett direkt kontinuum på hennes förfäders samekultur.</p><p>De senaste åren har Ánnámáret studerat jojktraditionen i sin släkt genom att studera gamla arkivinspelningar. Som ett resultat av detta arbete skapade hon tillsammans med sin tvärkonstnärliga grupp verket Nieguid duovdagat – Dreamscapes, som kombinerar jojk, stråkharpa och elektronisk musik med videokonst. Tack vare albumet Nieguid duovdagat fick världsmusikgenren upp ögonen för Ánnámáret, som tillsammans med sin arbetsgrupp utsågs till den officiella showcase-artisten för Womex 2023.<br>Ánnámáret hämtar sin musikaliska inspiration från naturen i Sápmi och den samiska kulturen och livsstilen. Hon gör musik och bor i norr med sin renskötarfamilj. Ánnámárets styrka som konstnär härrör från det faktum att hon vuxit upp mellan två kulturer och därmed förstår dessa kulturer samt kollisionerna och likheterna mellan dem.</p><p>Ánnámáret, jojk<br>Ilkka Heinonen, stråkharpa<br>Turkka Inkilä, live-elektronik, shakuhachi-flöjt<br>Marja Viitahuhta, videokonst</p><p>-----</p><p>Áilu Valle är en rapartist från Enare som rappar på nordsamiska, finska och engelska. I Valles stil möts ett ställningstagande budskap, teknikalitet och känsla. Han kommer från den lilla renbyn Kaamasmuka med ett tjugotal invånare som ligger i Utsjoki kommun.</p><p>Áilu Valle har släppt tre soloalbum på nordsamiska, Dušši dušše duššat (2012), 7 (2015) och Viidon sieiddit (2019). Valle har belönats med bland annat statspriset i barnkultur (2019), som delas ut av Centret för konstfrämjande, samt utsetts till Årets låtskrivare/kompositör av Sámi Music Awards och norska TONO (2020). På Savoyteatern uppträder Valle solo.</p><p>Längd cirka 2 h med paus</p><p>Parkett utskänkningsområde, åldersgräns 18 år. Läktare T, ingen utskänkning.</p>",
                "en": "<p>Savoy Theatre’s Sámi National Day concert will feature the latest trends in Sámi music performed by some of today’s most interesting musicians. On stage will be rap artist Áilu Valle and Ánnámáret and her band, who combine joik, modern soundscapes and video art in a spectacular way.</p><p>Ánnámáret, i.e. Anna Näkkäläjärvi-Länsman, is a joiker and musician who belongs to the Arctic indigenous people as a Sámi person. Ánnámáret’s recognisable joik sounds and interpretations are a direct continuation of her ancestors’ Reindeer Sámi culture.</p><p>In recent years, Ánnámáret has been researching her family’s joik tradition by studying old archival records. As a result of this work, she and her multiartistic team created the work Nieguid duovdagat – Dreamscapes, which combines joik, bowed lyre and electronic music with video art. The Nieguid duovdagat album brought Ánnámáret to the attention of the world music scene, and Ánnámáret and her group were selected as official Womex 2023 showcase artists.</p><p>Ánnámáret draws inspiration for her music from the nature of Sápmi and the Sámi culture and way of life. She makes music and lives in the north with her reindeer husbandry family. Ánnámáret’s strength as an artist comes from growing up between two cultures and thus understanding these cultures and the clashes and similarities between them.</p><p>Ánnámáret, joik<br>Ilkka Heinonen, bowed lyre<br>Turkka Inkilä, live electronics, shakuhachi flute<br>Marja Viitahuhta, video art</p><p>-----</p><p>Áilu Valle is a rap artist from Inari who raps in North Sámi, Finnish and English. Valle’s style combines a polemical message, technology and emotion. He originates from a small reindeer village of about 20 people in Kaamasmukka, Utsjoki municipality.</p><p>Áilu Valle has released three solo albums in North Sámi, “Dušši dušše duššat” (2012), “7” (2015) and “Viidon sieiddit” (2019). Valle has been awarded, for example, the 2019 State Prize for Children’s Culture by the Arts Promotion Centre Finland, and the Best Songwriter/Composer of the Year granted by Sámi Music Awards and Norway’s TONO in 2020. At Savoy's gig Valle will throw a solo performance.</p><p>Duration approx. 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 served.</p>"
            },
            "name": {
                "fi": "Ánnámáret & Áilu Valle – Saamelaisten kansallispäivän konsertti",
                "sv": "Ánnámáret & Áilu Valle",
                "en": "Ánnámáret & Áilu Valle"
            },
            "short_description": {
                "fi": "Savoy-teatterin saamelaisten kansallispäivän konsertissa kuullaan tuoreita saamelaismusiikin tuulia tämän hetken kiinnostavimpien muusikoiden esittämänä. Lavalla rap-artisti Áilu Valle sekä joikua, moderneja äänimaailmoja ja videotaidetta upeasti yhdistelevä Ánnámáret yhtyeineen.",
                "sv": "På Savoyteaterns konsert på samernas nationaldag kommer publiken att få höra friska vindar från den samiska musikscenen framförda av vår tids mest intressanta musiker. På scenen ses rapparen Áilu Valle och Ánnámáret, som kombinerar jojk, moderna ljudlandskap och videokonst på ett vackert sätt, tillsammans med sina band.",
                "en": "Savoy Theatre’s Sámi National Day concert will feature the latest trends in Sámi music performed by some of today’s most interesting musicians. On stage will be rap artist Áilu Valle and Ánnámáret and her band, who combine joik, modern soundscapes and video art in a spectacular way."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61389/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61956",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7307,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-22T08:13:47.080776Z",
                    "last_modified_time": "2024-02-06T13:23:03.063046Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740371.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7307/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-22T08:13:47.055364Z",
            "last_modified_time": "2024-04-05T17:13:42.695521Z",
            "date_published": null,
            "start_time": "2024-02-06T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5C9AC003F91BEB898E80658AE6C985FD/Det_blir_bara_varre",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5C9AC003F91BEB898E80658AE6C985FD/_Det_blir_bara_varre",
                "en": "http://www.vuotalo.fi/en/events/event/5C9AC003F91BEB898E80658AE6C985FD/Det_blir_bara_varre"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Det blir bara värre – Se menee vain pahemmaksi, on hauska minimusikaali kohtalosta ja kurjuudesta sekä myös kestävyydestä, rohkeudesta ja solidaarisuudesta.</p><p>Näytelmä pohjautuu Runebergin runoon Saarijärven Paavosta ja hänen vaimostaan.</p><p>”Emme voi istua täällä ja vain pyöritellä peukaloitamme”, sanoi Fredrika Runeberg Johan Ludvigille, kun toinen toistaan kurjemmat uutiset 2020-luvulta saavuttivat heidät Ennen Vanhassa. Niinpä pari tekee nyt paluun Fredrikan kirjoittamalla ja Paciuksen säveltämällä musiikkiversiolla Johan Ludvigin runosta Saarijärven Paavo.</p><p>”Suomessa oli todella kurjaa myös 1830-luvulla, kun kirjoitin huippurunoni”, Runeberg toteaa: ”Sotaa, köyhyyttä ja ilmastonmuutoksia.”</p><p>”Joten näiden kokemusten ja 193 vuoden elämänviisauden avulla voimme varmasti olla hyödyksi myös nykypäivän lapsille, lastenlapsille ja lastenlastenlapsille”, Fredrika täydentää. ”Ja uusi musiikki tekee siitä koko hommasta vähän – miten sen ilmaisisin – pirteämpää.”</p><p>”Jawohl”, toteaa Pacius.</p><p>Teksti: J.L. Runeberg ja M. Eklund-Vasama<br>Ohjaus ja visuaalinen suunnittelu: Marielle Eklund-Vasama<br>Musiikki: Petri Tiainen<br>Näyttämöllä: Johan Aspelin, Marika Westerling ja Petri Tiainen<br>Tuotanto: Kulttuuriyhdistys Grand rf.</p><p>Kieli: ruotsi<br>Kesto: 45 min<br>Ikäsuositus: 6–12-vuotiaat aikuistensa kanssa</p><p>Kouluryhmien osallistuminen edellyttää ilmoittautumista osoitteessa https://kultus.fi/</p>",
                "sv": "<p>Det blir bara värre är en rolig minimusikal om öde och elände – men också om uthållighet, mod och solidaritet, baserad på Runebergs dikt om Bonden Paavo och hans fru.</p><p>”Här kan vi ju inte sitta och rulla tummarna”, sade Fredrika Runeberg till Runeberg när den ena eländiga nyheten från 2020-talet efter den andra nådde dem i Förr i Tiden. Sagt och gjort; nu gör paret comeback med en nyskriven (av Fredrika) musikalversion (av Pacius) av dikten ”Högt bland Saarijärvis moar” (av Runeberg).</p><p>”Det var verkligt eländigt i Finland också på 1830-talet när jag skrev min toppendikt”, konstaterar Runeberg; ”med krig, fattigdom och klimatkatastrofer.”</p><p>”Så med hjälp av de erfarenheterna och 193 års livsvisdomar kan vi säkert vara till nytta också för dagens barn, barnbarn och barnbarnsbarnsbarnsbarn” fyller Fredrika i. ”Och den nyskrivna musiken gör det hela lite – hur skall jag säga – piggare.”</p><p>”Jawohl”, avslutar Pacius.</p><p>Text: J.L. Runeberg och M. Eklund-Vasama <br>Regi och visuell planering: Marielle Eklund-Vasama <br>Musik: Petri Tiainen <br>På scen: Johan Aspelin, Marika Westerling och Petri Tiainen<br>Produktion: Kulturföreningen Grand rf.</p><p>Språk: svenska<br>Längd: ca 45 minuter <br>Åldersrekommendation: 6–12 år + familj</p><p>Fritt deltagande för skolklasser men obligatorisk förhandsbokning via https://kultus.fi/</p>",
                "en": "<p>Det blir bara värre – It Just Gets Worse – is a humorous mini-musical about fate and misery, as well as resilience, courage, and solidarity.</p><p>The play is based on Runeberg's poem about the farmer Paavo and his wife.</p><p>\"We can't just sit here and twiddle our thumbs,\" said Fredrika Runeberg to Johan Ludvig when one distressing piece of news after another reached them from the 2020s in The Olden Days. So, the couple is now making a comeback with a musical written by Fredrika and composed by Pacius, based on Johan Ludvig's poem about Paavo of Saarijärvi.</p><p>\"Finland was truly miserable in the 1830s when I wrote my masterpiece,\" Runeberg states. \"War, poverty, and climate change.\"</p><p>\"So, with the help of those experiences and 193 years of wisdom, we can surely be of service to today's children, grandchildren, and great-grandchildren,\" Fredrika adds. \"And the new music adds a bit – how should I put it – more cheer to the whole affair.\"</p><p>\"Jawohl,\" concludes Pacius.</p><p>Text: J. L. Runeberg and M. Eklund-Vasama<br>Direction and visual planning: Marielle Eklund-Vasama<br>Music: Petri Tiainen<br>On stage: Johan Aspelin, Marika Westerling, and Petri Tiainen<br>Production: Kulturföreningen Grand rf.</p><p>Language: Swedish<br>Duration: 45 minutes<br>Age recommendation: 6–12-year-olds with their adults</p><p>Participation for school groups requires registration at https://kultus.fi/</p>"
            },
            "name": {
                "fi": "Det blir bara värre – Kulturföreningen Grand",
                "sv": "Det blir bara värre – Kulturföreningen Grand",
                "en": "Det blir bara värre – Kulturföreningen Grand"
            },
            "short_description": {
                "fi": "Det blir bara värre – Se menee vain pahemmaksi, on hauska minimusikaali kohtalosta ja kurjuudesta sekä myös kestävyydestä, rohkeudesta ja solidaarisuudesta.",
                "sv": "Det blir bara värre är en rolig minimusikal om öde och elände – men också om uthållighet, mod och solidaritet, baserad på Runebergs dikt om Bonden Paavo och hans fru.",
                "en": "Det blir bara värre – It Just Gets Worse – is a humorous mini-musical about fate and misery, as well as resilience, courage, and solidarity."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61956/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61955",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7306,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-22T08:13:46.905338Z",
                    "last_modified_time": "2024-02-06T13:23:02.967173Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740370.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7306/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-22T08:13:46.844848Z",
            "last_modified_time": "2024-04-05T17:13:42.641519Z",
            "date_published": null,
            "start_time": "2024-02-06T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DA7FCCB766E6A50668156113B2580E1D/Det_blir_bara_varre",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/DA7FCCB766E6A50668156113B2580E1D/_Det_blir_bara_varre",
                "en": "http://www.vuotalo.fi/en/events/event/DA7FCCB766E6A50668156113B2580E1D/Det_blir_bara_varre"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Det blir bara värre – Se menee vain pahemmaksi, on hauska minimusikaali kohtalosta ja kurjuudesta sekä myös kestävyydestä, rohkeudesta ja solidaarisuudesta.</p><p>Näytelmä pohjautuu Runebergin runoon Saarijärven Paavosta ja hänen vaimostaan.</p><p>”Emme voi istua täällä ja vain pyöritellä peukaloitamme”, sanoi Fredrika Runeberg Johan Ludvigille, kun toinen toistaan kurjemmat uutiset 2020-luvulta saavuttivat heidät Ennen Vanhassa. Niinpä pari tekee nyt paluun Fredrikan kirjoittamalla ja Paciuksen säveltämällä musiikkiversiolla Johan Ludvigin runosta Saarijärven Paavo.</p><p>”Suomessa oli todella kurjaa myös 1830-luvulla, kun kirjoitin huippurunoni”, Runeberg toteaa: ”Sotaa, köyhyyttä ja ilmastonmuutoksia.”</p><p>”Joten näiden kokemusten ja 193 vuoden elämänviisauden avulla voimme varmasti olla hyödyksi myös nykypäivän lapsille, lastenlapsille ja lastenlastenlapsille”, Fredrika täydentää. ”Ja uusi musiikki tekee siitä koko hommasta vähän – miten sen ilmaisisin – pirteämpää.”</p><p>”Jawohl”, toteaa Pacius.</p><p>Teksti: J.L. Runeberg ja M. Eklund-Vasama<br>Ohjaus ja visuaalinen suunnittelu: Marielle Eklund-Vasama<br>Musiikki: Petri Tiainen<br>Näyttämöllä: Johan Aspelin, Marika Westerling ja Petri Tiainen<br>Tuotanto: Kulttuuriyhdistys Grand rf.</p><p>Kieli: ruotsi<br>Kesto: 45 min<br>Ikäsuositus: 6–12-vuotiaat aikuistensa kanssa</p><p>Kouluryhmien osallistuminen edellyttää ilmoittautumista osoitteessa https://kultus.fi/</p>",
                "sv": "<p>Det blir bara värre är en rolig minimusikal om öde och elände – men också om uthållighet, mod och solidaritet, baserad på Runebergs dikt om Bonden Paavo och hans fru.</p><p>”Här kan vi ju inte sitta och rulla tummarna”, sade Fredrika Runeberg till Runeberg när den ena eländiga nyheten från 2020-talet efter den andra nådde dem i Förr i Tiden. Sagt och gjort; nu gör paret comeback med en nyskriven (av Fredrika) musikalversion (av Pacius) av dikten ”Högt bland Saarijärvis moar” (av Runeberg).</p><p>”Det var verkligt eländigt i Finland också på 1830-talet när jag skrev min toppendikt”, konstaterar Runeberg; ”med krig, fattigdom och klimatkatastrofer.”</p><p>”Så med hjälp av de erfarenheterna och 193 års livsvisdomar kan vi säkert vara till nytta också för dagens barn, barnbarn och barnbarnsbarnsbarnsbarn” fyller Fredrika i. ”Och den nyskrivna musiken gör det hela lite – hur skall jag säga – piggare.”</p><p>”Jawohl”, avslutar Pacius.</p><p>Text: J.L. Runeberg och M. Eklund-Vasama <br>Regi och visuell planering: Marielle Eklund-Vasama <br>Musik: Petri Tiainen <br>På scen: Johan Aspelin, Marika Westerling och Petri Tiainen<br>Produktion: Kulturföreningen Grand rf.</p><p>Språk: svenska<br>Längd: ca 45 minuter <br>Åldersrekommendation: 6–12 år + familj</p><p>Fritt deltagande för skolklasser men obligatorisk förhandsbokning via https://kultus.fi/</p>",
                "en": "<p>Det blir bara värre – It Just Gets Worse – is a humorous mini-musical about fate and misery, as well as resilience, courage, and solidarity.</p><p>The play is based on Runeberg's poem about the farmer Paavo and his wife.</p><p>\"We can't just sit here and twiddle our thumbs,\" said Fredrika Runeberg to Johan Ludvig when one distressing piece of news after another reached them from the 2020s in The Olden Days. So, the couple is now making a comeback with a musical written by Fredrika and composed by Pacius, based on Johan Ludvig's poem about Paavo of Saarijärvi.</p><p>\"Finland was truly miserable in the 1830s when I wrote my masterpiece,\" Runeberg states. \"War, poverty, and climate change.\"</p><p>\"So, with the help of those experiences and 193 years of wisdom, we can surely be of service to today's children, grandchildren, and great-grandchildren,\" Fredrika adds. \"And the new music adds a bit – how should I put it – more cheer to the whole affair.\"</p><p>\"Jawohl,\" concludes Pacius.</p><p>Text: J. L. Runeberg and M. Eklund-Vasama<br>Direction and visual planning: Marielle Eklund-Vasama<br>Music: Petri Tiainen<br>On stage: Johan Aspelin, Marika Westerling, and Petri Tiainen<br>Production: Kulturföreningen Grand rf.</p><p>Language: Swedish<br>Duration: 45 minutes<br>Age recommendation: 6–12-year-olds with their adults</p><p>Participation for school groups requires registration at https://kultus.fi/</p>"
            },
            "name": {
                "fi": "Det blir bara värre – Kulturföreningen Grand",
                "sv": "Det blir bara värre – Kulturföreningen Grand",
                "en": "Det blir bara värre – Kulturföreningen Grand"
            },
            "short_description": {
                "fi": "Det blir bara värre – Se menee vain pahemmaksi, on hauska minimusikaali kohtalosta ja kurjuudesta sekä myös kestävyydestä, rohkeudesta ja solidaarisuudesta.",
                "sv": "Det blir bara värre är en rolig minimusikal om öde och elände – men också om uthållighet, mod och solidaritet, baserad på Runebergs dikt om Bonden Paavo och hans fru.",
                "en": "Det blir bara värre – It Just Gets Worse – is a humorous mini-musical about fate and misery, as well as resilience, courage, and solidarity."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61955/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61624",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 6509,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-12-08T09:13:56.494291Z",
                    "last_modified_time": "2024-02-06T13:23:02.872220Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739500.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6509/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-12-08T09:13:56.440085Z",
            "last_modified_time": "2024-04-05T17:13:42.586264Z",
            "date_published": null,
            "start_time": "2024-02-05T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4C67AB38A77740A2402D78C948CEDE4A/Juurilla_Ben_Granfelt",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4C67AB38A77740A2402D78C948CEDE4A/Juurilla_Ben_Granfelt_Vid_rotterna",
                "en": "http://www.kanneltalo.fi/en/events/event/4C67AB38A77740A2402D78C948CEDE4A/Juurilla_Ben_Granfelt_At_the_roots"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien sarjan sekä kahvilan stagen ohjelmiston käynnistää vieraileva muusikko Ben Granfelt.</p><p>Kitaristi ja laulaja Ben Granfelt on soittanut lukuisten tunnettujen artistien ja yhtyeiden riveissä: Riki Sorsa, Gringos Locos, Guitar Slingers, Leningrad Cowboys, Wishbone Ash, Los Bastardos Finlandeses ja Drink Floyd. Keikalla kuullaan materiaalia kitarataiturin uusimmalta levyltä Gratitude sekä poimintoja muusikon pitkältä uralta.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka, laulu & kitara<br>Lasse Sirkko, basso<br>Tommi Lievemaa, kitara<br>Olli Haavisto, pedal steel guitar<br>Sirpa Suomalainen, saksofoni<br>Kepa Kettunen, rummut</p><p>Kesto: 1 t<br>Vapaa pääsy<br>Kahvilan stage</p><p><u><a href=\"https://www.kanneltalo.fi/maksuttomat-maanantait\">Maksuttomat maanantait</u></a> on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Börja veckan med fullt hålligång!</p><p>Höstens serie av Vid rötterna-klubbar samt programmet på caféets stage startas av gästmusikern <b>Ben Granfel</b>t.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka, sång & gitarr<br>Lasse Sirkko, bas<br>Tommi Lievemaa, gitarr<br>Olli Haavisto, pedal steel gitarr<br>Sirpa Suomalainen, saxofon<br>Kepa Kettunen, trummor</p><p><u><a href=\"https://www.kanneltalo.fi/sv/konstadsfria-mandagar\">Kostnadsfria måndagar</u></a> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Start the week off with some catchy tunes!</p><p>This autumn’s At the Roots Club series and the café stage programme will be launched by visiting musician <b>Ben Granfelt</b>.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka, vocals & guitar<br>Lasse Sirkko, bass<br>Tommi Lievemaa, guitar<br>Olli Haavisto, pedal steel guitar<br>Sirpa Suomalainen, saxophone<br>Kepa Kettunen, drums</p><p><u><a href=\"https://www.kanneltalo.fi/en/free-mondays\">Free Mondays</u></a> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Juurilla: Ben Granfelt – Maksuttomat maanantait",
                "sv": "Juurilla: Ben Granfelt | Vid rötterna – Kostnadsfria måndagar",
                "en": "Juurilla: Ben Granfelt | At the roots – Free Mondays"
            },
            "short_description": {
                "fi": "Aloita viikko menevällä meiningillä! Syksyn Juurilla-klubien sarjan sekä kahvilan stagen ohjelmiston käynnistää vieraileva muusikko Ben Granfelt.",
                "sv": "Börja veckan med fullt hålligång!",
                "en": "Start the week off with some catchy tunes!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61624/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61940",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7238,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-18T12:13:54.285639Z",
                    "last_modified_time": "2024-02-06T13:23:02.788362Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740369.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7238/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-01-18T12:13:54.263666Z",
            "last_modified_time": "2024-04-05T17:13:42.531550Z",
            "date_published": null,
            "start_time": "2024-02-05T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5674407D15F56FBE7C2198451E7DDAEE/Min_kalla_-_Tomi_Pulkkinen_Trions_Runebergssanger",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5674407D15F56FBE7C2198451E7DDAEE/Min_kalla_-_Tomi_Pulkkinen_Trions_Runebergssanger"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Vi får höra Runebergs dikter i ny tonsättning av Tomi Pulkkinen! Arto Nybom (fiol) och Joel Jaakkola (trummor) står för ackompanjemanget.</p><p>Olika artister har i olika tider tolkat Runeberg, men man får och bör hitta klassikerna på nytt på nya vis! Gruppen har tolkat Runebergs mest romantiska texter, såsom ”Hjärtats morgon”. ”Norden” ekar i en enastående tolkning och föreställningen börjar med en fräsch version av ”Vid en källa”.<br> <br>”För mig börjar allting vid källan; inspirationens, kreativitetens, fantasins källa - en källa som man hittar från sig själv och där man hittar sig själv.\"<br>- Tomi Pulkkinen <br> <br>Välkommen till en eftermiddag med stora känslor och mycket kreativitet - det är dags att hitta Runeberg igen!</p><p>Dessutom kaffeservering och infotorg. Fritt deltagande, ingen förhandsanmälan till själva programmet.</p><p>Du har möjlighet till samåkning. Här kan du se startpunkterna:  <br> <br>Malms sjukhusbusshållplats, Kyrkobyvägen. kl. 12.50 <br>Kampen, metrostations gula ingång (mittemot fjärrtrafikterminalen) kl. 13 <br>Östra centrum, spårvagn 15:s ändhållplats kl. 13.10</p><p>De som önskar samåkning bör anmäla sitt deltagande och vilken träffpunkt de kommer till. Anmälningar tas emot av Mathilda Larsson, telefonnummer: 09 310 49489 eller per e-post: mathilda.larsson@hel.fi</p>",
                "sv": "<p>Vi får höra Runebergs dikter i ny tonsättning av Tomi Pulkkinen! Arto Nybom (fiol) och Joel Jaakkola (trummor) står för ackompanjemanget.</p><p>Olika artister har i olika tider tolkat Runeberg, men man får och bör hitta klassikerna på nytt på nya vis! Gruppen har tolkat Runebergs mest romantiska texter, såsom ”Hjärtats morgon”. ”Norden” ekar i en enastående tolkning och föreställningen börjar med en fräsch version av ”Vid en källa”.<br> <br><i>”För mig börjar allting vid källan; inspirationens, kreativitetens, fantasins källa - en källa som man hittar från sig själv och där man hittar sig själv.\"</i><br>- Tomi Pulkkinen <br> <br>Välkommen till en eftermiddag med stora känslor och mycket kreativitet - det är dags att hitta Runeberg igen!</p><p>Dessutom kaffeservering och infotorg. Fritt deltagande, ingen förhandsanmälan till själva programmet.</p><p>Du har möjlighet till samåkning. Här kan du se startpunkterna:  <br> <br>Malms sjukhusbusshållplats, Kyrkobyvägen. kl. 12.50 <br>Kampen, metrostations gula ingång (mittemot fjärrtrafikterminalen) kl. 13 <br>Östra centrum, spårvagn 15:s ändhållplats kl. 13.10</p><p>De som önskar samåkning bör anmäla sitt deltagande och vilken träffpunkt de kommer till. Anmälningar tas emot av Mathilda Larsson, telefonnummer: 09 310 49489 eller per e-post: mathilda.larsson@hel.fi</p>"
            },
            "name": {
                "fi": "Min källa - Tomi Pulkkinen Trions Runebergssånger – Seniornätverksträff",
                "sv": "Min källa - Tomi Pulkkinen Trions Runebergssånger – Seniornätverksträff"
            },
            "short_description": {
                "fi": "Vi får höra Runebergs dikter i ny tonsättning av Tomi Pulkkinen! Arto Nybom (fiol) och Joel Jaakkola (trummor) står för ackompanjemanget.",
                "sv": "Vi får höra Runebergs dikter i ny tonsättning av Tomi Pulkkinen! Arto Nybom (fiol) och Joel Jaakkola (trummor) står för ackompanjemanget."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61940/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61855",
            "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:105/?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:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7077,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T13:12:56.001577Z",
                    "last_modified_time": "2024-02-06T13:23:02.696532Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736589.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-10T13:12:55.980942Z",
            "last_modified_time": "2024-04-05T17:13:42.482734Z",
            "date_published": null,
            "start_time": "2024-02-05T08:15:00Z",
            "end_time": "2024-02-05T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4D5F12157A8F80AC36F619B2A4B6CE84/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4D5F12157A8F80AC36F619B2A4B6CE84/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/4D5F12157A8F80AC36F619B2A4B6CE84/The_dance_and_play"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.<br>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "short_description": {
                "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61855/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61854",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 7072,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-01-10T12:13:00.967707Z",
                    "last_modified_time": "2024-02-06T13:23:02.601517Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736572.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7072/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-01-10T12:13:00.935724Z",
            "last_modified_time": "2024-04-05T17:13:42.424217Z",
            "date_published": null,
            "start_time": "2024-02-05T07:15:00Z",
            "end_time": "2024-02-05T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/911B1257B17D5CCF73A45630731A1A1E/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/911B1257B17D5CCF73A45630731A1A1E/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/911B1257B17D5CCF73A45630731A1A1E/The_dance_and_play"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä. Tunnit on suunniteltu tukemaan osallistujien yksilöllisiä tarpeita sekä innostamaan heitä vuorovaikutukseen keskenään ja käyttämään liikettä yhteisenä kielenä.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p>Kielet: Suomi (English, Russian and Spanish if needed)</p><p><b>Osallistuminen</b></p><p>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p><b>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</b></p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b></p><p>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid.</p><p><b>Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med. </b></p><p>Språk: finska</p>",
                "en": "<p>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p><p><b>Participation</b></p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek – Verkstaden",
                "en": "The dance and play – Workshop"
            },
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61854/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4osb4",
            "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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rbjm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rbmy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rbqa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rbt4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rbxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rb3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rb6i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rcci/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rcf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rcje/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-03-13T07:56:39.202071Z",
            "last_modified_time": "2024-04-05T12:49:32.454307Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-03-28T13:00:00Z",
            "end_time": "2024-06-13T13: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä Entressen kirjastossa 11.12.2023 - 13.6.2024 seuraavasti:</p><p>maanantaisin klo 15 - 16:30 arabia, hindi/ englanti, venäjä</p><p>keskiviikkoisin klo 15 - 16:30 albania, somali, ukraina/ venäjä</p><p>torstaisin klo 15 - 16:30 arabia, dari/ farsi/ kurdi, kiina, thai/ lao</p><p>Palvelemme asiakkaita seuraavissa asioissa: palveluohjaus, harrastuksen löytäminen, koulujen asiakirjojen ja lomakkeiden täyttäminen, Wilma -järjestelmä ja yhteistyö koulun kanssa.</p><p>Ohjausta ei ole 6.12., 24. - 31.12.2023, 1.1., 6.1., 9 - 10.1., 15.1. - 17.1., 9.5., 16.5.2024.</p>",
                "sv": "<p>Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen i Entresse-biblioteket från 11.12.2023 till 13.6.2024 enligt följande</p><p>måndagar kl. 15-16.30 arabiska, hindi/engelska, ryska</p><p>Onsdagar kl. 15.00 - 16.30 Albanska, Somaliska, Ukrainska/Ryska</p><p>Torsdagar kl 15:00 - 16:30 Arabiska, Dari/Farsi/Kurdiska, Kinesiska, Thai/Lao</p><p>Vi betjänar kunder inom följande områden: servicerådgivning, hitta en hobby, fylla i skoldokument och blanketter, Wilma-systemet och samarbete med skolan.</p><p>Ingen vägledning den 6 december, 24-31 december 2023, 1 januari, 6 januari, 9-10 januari, 15 - 17 januari, 9 maj, 16.5. 2024.</p>",
                "en": "<p>The City of Espoo offers cultural counselling services of basic education in the native language in Entresse Library from 11.12.2023 to 13.6.2024 as follows:</p><p>Mondays at 15 - 16:30 Arabic, Hindi/English, Russian</p><p>Wednesdays 15:00 - 16:30 Albanian, Somali, Ukrainian/ Russian</p><p>Thursdays from 15:00 to 16:30 Arabic, Dari/Farsi/Kurdish, Chinese, Thai/Lao</p><p>We serve clients in the following areas: service counselling, finding a hobby, filling in school documents and forms, Wilma system and cooperation with the school.</p><p>There will be no guidance on 6 December, 24 - 31 December 2023, 1 January, 6 January, 9-10 January, 15 - 17 January, 9 May, 16.5. 2024.</p>"
            },
            "name": {
                "fi": "Perusopetuksen kulttuuriohjaajien neuvontapalvelut arabia, dari/ farsi/ kurdi, kiina, thai/ lao",
                "sv": "Rådgivningstjänster för kulturrådgivare i grundutbildningen Arabiska, Dari/ Farsi/ Kurdiska, Kinesiska, Thai/ Lao",
                "en": "Counselling services in basic education in Arabic, Dari/ Farsi/ Kurdish, Chinese, Thai/ Lao"
            },
            "short_description": {
                "fi": "Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä.",
                "sv": "Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen.",
                "en": "The City of Espoo offers cultural counselling services of basic education in the native language"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4osb4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4osfm",
            "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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q2h4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q2lm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q2oy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q2se/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q2vq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q2yy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q24e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q27m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q3cu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4q3f4/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-03-13T12:25:17.821005Z",
            "last_modified_time": "2024-04-05T12:44:27.158162Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-08T12:00:00Z",
            "end_time": "2024-06-10T13: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä Entressen kirjastossa 11.12.2023 - 13.6.2024 seuraavasti:</p><p>maanantaisin klo 15 - 16:30 arabia, hindi/ englanti, venäjä</p><p>keskiviikkoisin klo 15 - 16:30 albania, somali, ukraina/ venäjä</p><p>torstaisin klo 15 - 16:30 arabia, dari/ farsi/ kurdi, kiina, thai/ lao</p><p>Palvelemme asiakkaita seuraavissa asioissa: palveluohjaus, harrastuksen löytäminen, koulujen asiakirjojen ja lomakkeiden täyttäminen, Wilma -järjestelmä ja yhteistyö koulun kanssa.</p><p>Ohjausta ei ole 6.12., 24. - 31.12.2023, 1.1., 6.1., 9-10.1., 15.1. - 17.1., 1.5., 9.5., 16.5. 2024.</p>",
                "sv": "<p>Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen i Entresse-biblioteket från 11.12.2023 till 13.6.2024 enligt följande</p><p>måndagar kl. 15-16.30 arabiska, hindi/engelska, ryska</p><p>Onsdagar kl. 15.00 - 16.30 Albanska, Somaliska, Ukrainska/Ryska</p><p>Torsdagar kl 15:00 - 16:30 Arabiska, Dari/Farsi/Kurdiska, Kinesiska, Thai/Lao</p><p>Vi betjänar kunder inom följande områden: servicerådgivning, hitta en hobby, fylla i skoldokument och blanketter, Wilma-systemet och samarbete med skolan.</p><p>Ingen vägledning 6.12., 24. - 31.12.2023, 1.1., 6.1., 9-10.1., 15.1. - 17.1., 1.5., 9.5., 16.5. 2024.</p>",
                "en": "<p>The City of Espoo offers cultural counselling services of basic education in the native language in Entresse Library from 11.12.2023 to 13.6.2024 as follows:</p><p>Mondays at 15 - 16:30 Arabic, Hindi/English, Russian</p><p>Wednesdays 15:00 - 16:30 Albanian, Somali, Ukrainian/ Russian</p><p>Thursdays from 15:00 to 16:30 Arabic, Dari/Farsi/Kurdish, Chinese, Thai/Lao</p><p>We serve clients in the following areas: service counselling, finding a hobby, filling in school documents and forms, Wilma system and cooperation with the school.</p><p>There will be no guidance on 6.12., 24. - 31.12.2023, 1.1., 6.1., 9-10.1., 15.1. - 17.1., 1.5., 9.5., 16.5. 2024.</p>"
            },
            "name": {
                "fi": "Perusopetuksen kulttuuriohjaajien neuvontapalvelut arabia, hindi/ englanti, venäjä",
                "sv": "Rådgivningstjänster för kulturrådgivare i grundskolan Arabiska, Hindi/Engelska, Ryska",
                "en": "Cultural counselling services for basic education in Arabic, Hindi/English, Russian"
            },
            "short_description": {
                "fi": "Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä",
                "sv": "Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen",
                "en": "The City of Espoo offers cultural counselling services of basic education in the native language"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4osfm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4osiu",
            "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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rfmm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rfpy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rftu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rfxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rf3y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rf7m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rgcy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rgge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rgjy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rgnm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4rgre/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-12T08:41:33.408287Z",
            "last_modified_time": "2024-04-05T12:40:09.289003Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-03-27T13:00:00Z",
            "end_time": "2024-06-12T13: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä Entressen kirjastossa 11.12.2023 - 13.6.2024 seuraavasti:</p><p>maanantaisin klo 15 - 16:30 arabia, hindi/ englanti, venäjä</p><p>keskiviikkoisin klo 15 - 16:30 albania, somali, ukraina/ venäjä</p><p>torstaisin klo 15 - 16:30 arabia, dari/ farsi/ kurdi, kiina, thai/ lao</p><p>Palvelemme asiakkaita seuraavissa asioissa: palveluohjaus, harrastuksen löytäminen, koulujen asiakirjojen ja lomakkeiden täyttäminen, Wilma -järjestelmä ja yhteistyö koulun kanssa.</p><p>Ohjausta ei ole 6.12., 24. - 31.12.2023, 1.1., 6.1., 9-10.1., 15.1. - 17.1., 1.5., 9.5., 16.5. 2024.</p>",
                "sv": "<p>Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen i Entresse-biblioteket från 11.12.2023 till 13.6.2024 enligt följande</p><p>måndagar kl. 15-16.30 arabiska, hindi/engelska, ryska</p><p>Onsdagar kl. 15.00 - 16.30 Albanska, Somaliska, Ukrainska/Ryska</p><p>Torsdagar kl 15:00 - 16:30 Arabiska, Dari/Farsi/Kurdiska, Kinesiska, Thai/Lao</p><p>Vi betjänar kunder inom följande områden: servicerådgivning, hitta en hobby, fylla i skoldokument och blanketter, Wilma-systemet och samarbete med skolan.</p><p>Ingen vägledning den 6 december, 24-31 december 2023, 1 januari, 6 januari, 9-10 januari, 15 - 17 januari, 1.5., 9.5., 16.5. 2024.</p>",
                "en": "<p>The City of Espoo offers cultural counselling services of basic education in the native language in Entresse Library from 11.12.2023 to 13.6.2024 as follows:</p><p>Mondays at 15 - 16:30 Arabic, Hindi/English, Russian</p><p>Wednesdays 15:00 - 16:30 Albanian, Somali, Ukrainian/ Russian</p><p>Thursdays from 15:00 to 16:30 Arabic, Dari/Farsi/Kurdish, Chinese, Thai/Lao</p><p>We serve clients in the following areas: service counselling, finding a hobby, filling in school documents and forms, Wilma system and cooperation with the school.</p><p>There will be no guidance on 6 December, 24 - 31 December 2023, 1 January, 6 January, 9-10 January, 15 - 17 January, 1.5., 9.5., 16.5. 2024.</p>"
            },
            "name": {
                "fi": "Perusopetuksen kulttuuriohjaajien neuvontapalvelut albania, somali, ukraina/ venäjä",
                "sv": "Rådgivningstjänster för kulturrådgivare inom grundläggande utbildning Albanska, somaliska, ukrainska/ryska",
                "en": "Counselling services in basic education in Albanian, Somali, Ukrainian/ Russian"
            },
            "short_description": {
                "fi": "Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä.",
                "sv": "Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen.",
                "en": "The City of Espoo offers cultural counselling services of basic education in the native language in Entresse Library."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4osiu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4osme",
            "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:p10727/?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:p7349/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-04T08:08:59.270942Z",
            "last_modified_time": "2024-04-05T10:49:34.402860Z",
            "date_published": "2024-04-04T07:44:00Z",
            "start_time": "2024-04-24T14:00:00Z",
            "end_time": "2024-04-24T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Demokraattinen sivistysliitto järjestää keskustelutilaisuuden Nuoriso, maahanmuutto ja jengit. </p><p>Nuoret joutuvat usein paheksunnan kohteiksi pelkästään omalla olemassaolollaan julkisilla paikoilla. Nykyisin erityisesti maahanmuuttotaustaiset nuoret saavat Suomessa monia leimoja ja heistä puhutaan usein samassa lauseessa jengien ja häiriökäyttäytymisen kanssa. Huumeet ovat myös usein mukana asenteellisissa demonisointipuheissa.</p><p>Toisin kuin uutisoinnista ja valtavirtakeskusteluista voisi päätellä, jengit ja nuorisojengit eivät kuitenkaan ole mikään uusi asia. Viime vuosisadan lopulla käytiin eräiden moottoripyöräjengien välisiä verisiä sotia Pohjoismaissa, Suomea myöten. Helsingissä on nuorisojengejä pyörinyt vielä 1990-luvulla. Huumekaupasta puhuttaessa tulee ottaa huomioon niiden monimutkaiset ketjut, hierarkiat ja linkit, jotka ulottuvat aina veroparatiiseihin asti.</p><p>Yhteiskunnan osattomat, syrjäytetyt, yhteiskunnan ulkopuolelle jätetyt nuoret ovat usein rikollisjärjestöille helppo kohde. Syrjivät ja päähän potkivat rakenteet ovat usein nuorten ongelmien taustalla. Vuosikymmeniä jatkunut leikkauspolitiikka sosiaalipalveluista heijastuu niin ikään nuoriin, joilta ollaan viemässä yhä enemmän pois tulevaisuuden näköaloja.</p><p>Todellisuus uutisotsikoiden takaa</p><p>Mitä tapahtuu Ruotsissa tällä hetkellä, liittyy laajemmin huumekaupan rakenteiden muutokseen Euroopassa. Samalla tavalla kuin 90-luvulla moottoripyöräjengien välinen sota Pohjoismaissa oli osa laajempaa tilannetta Euroopassa.  </p><p>Keskustelutilaisuudessa tullaan käymään tätä ylätason rakennetta järjestäytyneessä rikollisuudessa ja ennen kaikkea miten se heijastuu meidän kaikkien arkeen esimerkiksi nuorison kautta.</p><p>Keskustelutilaisuudessa myös käydään nuorten asiantuntijoiden kautta nuorison todellisuutta nykyisessä tilanteessa ja kuinka paljon se täsmää uutisotsikoiden kanssa.</p><p>Keskustelutilaisuuden puhujat Jenny Kasongo, Vasemmistonuorten ensimmäinen varapuheenjohtaja ja SAMHA järjestön edustaja sekä toimittaja Ari Sardar.<br></p>",
                "sv": "<p>Demokratiska kultursällskapet anordnar en debatt om Ungdom, invandring och gäng.</p><p>Unga människor är ofta föremål för ogillande bara av sin egen existens på offentliga platser. Numera får särskilt unga människor med invandringsbakgrund många stämplar i Finland och de pratas ofta om i samma mening som gäng och störande beteende. Narkotika ingår också ofta i attityddemoniseringstal.</p><p>I motsats till vad man kunde dra slutsatsen från nyheterna och mainstreamdiskussionerna är dock gäng och ungdomsgäng inget nytt. I slutet av förra seklet pågick blodiga krig mellan några motorcykelgäng i Norden, inklusive Finland. Det har funnits ungdomsgäng i Helsingfors sedan 1990-talet. När man talar om narkotikahandeln måste man ta hänsyn till deras komplexa kedjor, hierarkier och länkar, som sträcker sig ända till skatteparadis.</p><p>Unga människor som inte har någon del i samhället, är marginaliserade, lämnade utanför samhället, är ofta ett lätt mål för kriminella organisationer. Diskriminerande och huvudsparkande strukturer ligger ofta bakom ungas problem. Den politik att skära ned på socialtjänsten som pågått i decennier återspeglas också hos unga, som alltmer berövas sina framtidsperspektiv.</p><p>Verkligheten bakom nyhetsrubrikerna</p><p>Det som händer i Sverige just nu är mer allmänt relaterat till förändringen av strukturerna för narkotikahandeln i Europa. På samma sätt som på 90-talet var kriget mellan mc-gäng i Norden en del av en vidare situation i Europa.</p><p>I diskussionstillfället kommer vi att besöka denna toppstruktur inom organiserad brottslighet och framför allt hur den återspeglas i vår allas vardag, till exempel genom ungdomen.</p><p>I diskussionseventet kommer unga experter också att diskutera ungdomars verklighet i den aktuella situationen och hur mycket den stämmer överens med nyhetsrubrikerna.</p><p>Talarna för diskussionssessionen är Jenny Kasongo, den första vicepresidenten för Leftist Youth och en representant för SAMHA-organisationen, och journalisten Ari Sardar.</p>",
                "en": "<p>The Democratic Society of Culture organizes a debate on Youth, immigration and gangs.</p><p>Young people are often objects of disapproval just by their own existence in public places. Nowadays, especially young people with an immigration background get many labels in Finland and they are often talked about in the same sentence as gangs and disruptive behavior. Drugs are also often included in attitudinal demonization speeches.</p><p>Contrary to what could be concluded from the news and mainstream discussions, however, gangs and youth gangs are nothing new. At the end of the last century, there were bloody wars between some motorcycle gangs in the Nordic countries, including Finland. There have been youth gangs in Helsinki since the 1990s. When talking about the drug trade, one must take into account their complex chains, hierarchies and links, which extend all the way to tax havens.</p><p>Young people who have no part in society, are marginalized, left out of society, are often an easy target for criminal organizations. Discriminatory and head-kicking structures are often behind young people's problems. The policy of cutting social services that has been going on for decades is also reflected in young people, who are increasingly being deprived of their future perspectives.</p><p>The reality behind the news headlines</p><p>What is happening in Sweden at the moment is more broadly related to the change in the structures of the drug trade in Europe. In the same way as in the 90s, the war between motorcycle gangs in the Nordic countries was part of a wider situation in Europe.</p><p>In the discussion session, we will visit this top-level structure in organized crime and, above all, how it is reflected in the everyday life of all of us, for example through the youth.</p><p>In the discussion event, young experts will also discuss the reality of youth in the current situation and how much it matches the news headlines.</p><p>The speakers of the discussion session are Jenny Kasongo, the first vice-president of Leftist Youth and a representative of the SAMHA organization, and journalist Ari Sardar.</p>"
            },
            "name": {
                "fi": "Nuoriso, maahanmuutto ja jengit",
                "sv": "Ungdom, invandring och gäng",
                "en": "Youth, immigration and gangs"
            },
            "short_description": {
                "fi": "Keskustelutilaisuudessa käydään nuorten asiantuntijoiden kautta nuorison todellisuutta nykyisessä tilanteessa.\n",
                "sv": "Under diskussionssessionen kommer unga experter att diskutera ungdomars verklighet i den aktuella situationen.\n",
                "en": "In the discussion session, young experts will discuss the reality of youth in the current situation.\n"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4osme/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4ospu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4opey/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-15T13:37:32.972052Z",
            "last_modified_time": "2024-04-05T10:35:55.160724Z",
            "date_published": "2024-03-19T23:00:00Z",
            "start_time": "2024-04-09T05:00:00Z",
            "end_time": "2024-04-10T17: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": 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>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Kaupunkikeskus Lippulaivassa energiatehokkuus ja vastuullisuus otetaan vakavasti: rakennus on energiankäytön osalta hiilineutraali, hyödyntää geoenergiaa lämmityksessä ja jäähdytyksessä sekä jo rakennusvaiheessa on investoitu älykkäisiin energiaratkaisuihin. Kiertokävelyillä pääsee tutustumaan keskuksen aurinkopaneeleihin, Euroopan suurimpaan kaupallisessa rakennuksessa sijaitsevaan maalämpökeskukseen ja 1,5 megawatin akkuhuoneeseen, joka avustaa sähkön kantaverkon tehotasapainossa. 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! </p><p>Haluatko olla osa kestävän tulevaisuuden rakentumista? Liity mukaan Espoon kaupungin energiailtamaan keskiviikkona 10.4. klo 17 Lippulaivan kirjastoon, ja saa tietoa kaupungin kestävän energian edistämisestä. Kuule mielenkiintoisia puheenvuoroja asiantuntijoilta ja tutustu konkreettisiin esimerkkeihin, kuten geotermisen energian hyödyntämiseen kaupunkikeskus Lippulaivassa ja Espoon asuntojen toimiin kestävän energian edistämiseksi. </p><p>Lisäksi tapahtumassa on puuhanurkkaus lapsiperheille sekä kaupunkisuunnittelua havainnollistava pelidemo. Paikalla tapahtumassa on myös HSY Ilmastoinfo, jonka asiantuntijalta saa konkreettista energianeuvontaa ja vinkkejä kestävämpään arkeen! </p><p>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ä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ä 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>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>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äyttely on esillä 24.6. - 15.7. </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>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Centrum Lippulaiva tar energieffektivitet och ansvar på allvar: byggnaden är koldioxidneutral när det gäller energianvändning, använder geoenergi för uppvärmning och kyla och har redan investerat i smarta energilösningar under byggskedet. På cirkulära promenader kan du bekanta dig med centrets solpaneler, Europas största geotermiska centrum beläget i en kommersiell byggnad och batterirummet på 1,5 megawatt som hjälper till med kraftbalansen i elnätet. 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!</p><p>Vill du vara med och bygga en hållbar framtid? Följ med på energikvällen i Esbo stad onsdagen den 10.4. kl 17 till Lippulaivas bibliotek, och få information om främjandet av hållbar energi i staden. Hör intressanta tal från experter och lär dig om konkreta exempel, såsom utnyttjandet av geotermisk energi i Lippulaivas centrum och Esbolägenheternas åtgärder för att främja hållbar energi.</p><p>Dessutom har evenemanget en trähörna för barnfamiljer och en speldemo som illustrerar stadsplanering. På evenemanget kommer även HSY Ilmastoinfo, vars experter ger dig konkreta energiråd och tips för en mer hållbar vardag!</p><p>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 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 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>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem 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 HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</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>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>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>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 will be on display on 24.6. - 15.7.</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>"
            },
            "name": {
                "fi": "Espoon kirjastojen Ympäristökevät",
                "sv": "Esbobibliotekens Miljövår",
                "en": "The Espoo libraries' Environmental Spring"
            },
            "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. "
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ospu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oste",
            "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:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2024-03-28T12:35:12.748797Z",
            "last_modified_time": "2024-04-05T10:34:09.153277Z",
            "date_published": null,
            "start_time": "2024-04-18T09:00:00Z",
            "end_time": "2024-04-18T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.kuntarekry.fi/fi/tyopaikat/lansi-uudenmaan-hyvinvointialue/",
                "sv": "https://www.luvn.fi/sv/arbeta-hos-oss/lediga-jobb",
                "en": "https://www.luvn.fi/en/work-us/open-positions"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Työllisyys Espoo",
                "sv": "Sysselsättning Esbo",
                "en": "Employment Espoo"
            },
            "description": {
                "fi": "<p><br>Tässä rekrytointitapahtumassa Länsi-Uudenmaan hyvinvointialue (LUVN) esittelee avoimia työpaikkoja, antaa hakuohjeet ja haastattelee hakijoita. LUVN hakee lähihoitajia, sairaanhoitajia ja terveydenhoitajia.</p><p>Ohjelma:</p><p>* Klo 12.00 työnantaja esittäytyy ja kertoo avoimista työpaikoista.</p><p>* Haastattelut alkavat esittelyn jälkeen.</p><p>Kannattaa tulla paikalle heti kello 12, kun työtehtävät esitellään. Esittelyn jälkeen kaikki halukkaat pääsevät työhaastatteluun.</p><p>Tapahtuma päättyy, kun hakijat on haastateltu. Tapahtuma voi siis päättyä jo ennen kello 15.00.</p><p>Jos sinulla on CV, ota se mukaan. CV ei ole kuitenkaan välttämätön.</p><p>Paikalla on myös Espoon kaupungin edustajia, jotka neuvovat työnhaussa.</p><p>Tervetuloa!</p><p>#SinunTyösiPuolella<br></p>",
                "sv": "<p>Evenemanget är på finska. Läs mer om evenemanget på finska.</p><p>#FörDittArbete</p>",
                "en": "<p>The event will be held in Finnish. More information is available on the Finnish event page. </p><p>#YourWorkIsOurWork</p>"
            },
            "name": {
                "fi": "Työnantajatreffit: Länsi-Uudenmaan hyvinvointialue",
                "sv": "Työnantajatreffit rekryteringsevenemang: Västra Nylands välfärdsområde",
                "en": "Työnantajatreffit recruitment event: Western Uusimaa Wellbeing Services County"
            },
            "short_description": {
                "fi": "Rekrytointitapahtuma Sellon kirjastossa",
                "sv": "Rekryteringsevenemang i Sellobiblioteket",
                "en": "Recruitment event in Sello Library"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oste/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4oswm",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-05T10:32:50.875547Z",
            "last_modified_time": "2024-04-05T10:32:50.875572Z",
            "date_published": null,
            "start_time": "2024-04-14T07:00:00Z",
            "end_time": "2024-04-14T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Maaginen suunnistus lasten- ja nuorten osastolla<br></p>"
            },
            "name": {
                "fi": "Maaginen viikko: Maaginen suunnistus lasten- ja nuorten osastolla"
            },
            "short_description": {
                "fi": "Maaginen viikko: Lasten ja nuorten ohjelma "
            },
            "location_extra_info": {
                "fi": "Lasten- ja nuorten osasto "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4oswm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4osz4",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-05T10:32:32.309483Z",
            "last_modified_time": "2024-04-05T10:32:32.309512Z",
            "date_published": null,
            "start_time": "2024-04-13T07:00:00Z",
            "end_time": "2024-04-13T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Maaginen suunnistus lasten- ja nuorten osastolla<br></p>"
            },
            "name": {
                "fi": "Maaginen viikko: Maaginen suunnistus lasten- ja nuorten osastolla"
            },
            "short_description": {
                "fi": "Maaginen viikko: Lasten ja nuorten ohjelma "
            },
            "location_extra_info": {
                "fi": "Lasten- ja nuorten osasto "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4osz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4os5a",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-03-27T12:28:12.133099Z",
            "last_modified_time": "2024-04-05T10:15:38.925070Z",
            "date_published": null,
            "start_time": "2024-04-12T14:30:00Z",
            "end_time": "2024-04-12T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.esc-ape.net/",
                "en": "https://www.esc-ape.net/"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "ESC - Espoon science fiction- ja fantasiaseura",
                "en": "ESC - Espoon science fiction- ja fantasiaseura"
            },
            "description": {
                "fi": "<p>Espoossa asuva eteläafrikkalainen fantasiakirjailija Marie Mullany tulee kertomaan maailman luomisesta fantasiakirjallisuudessa. Tilaisuus on englanniksi. </p><p>Hän on kirjoittanut tähän mennessä kolme osaa Sangwheel Chronicles-sarjaa: https://www.mariemullany.com/sangwheel-chronicles</p><p>ja hänellä on maailmanrakennukseen keskittyvä YouTube-kanava Just In Time Worlds - YouTube</p><p><br> Topics:</p><p>Building an epic fantasy world:<br> - How not to get caught in an endless loop of world building<br> - Where to get inspiration for world building<br>         real world links in Sangwheel Chronicles like using a white stag.<br>         using street players<br>         building out a noble hierarchy<br> - How to build a magic system that supports your plot<br>         why Sangwheel has blood magic<br>         why Sangwheel has gods<br> - How to add fantasy elements and make them feel real<br>          The bluron bird, the yanari and the masoraxi in Sangwheel.<br>           Keeping time<br>           Embedding fantasy elements.</p><p>ESC - Espoon science fiction- ja fantasiaseura</p><p><a><br>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.<br></a></p><p>Kuva: Tiina Hautala</p>",
                "en": "<p>Espoo-based South African fantasy writer Marie Mullany will talk about world creation in fantasy literature. the event is in English.</p><p>She has so far written three volumes of the Sangwheel Chronicles series: https://www.mariemullany.com/sangwheel-chronicles</p><p>and She has a YouTube channel dedicated to worldbuilding: Just In Time Worlds - YouTube</p><p></p><p> Topics:</p><p><a> Building an epic fantasy world:<br> - How not to get caught in an endless loop of world building<br> - Where to get inspiration for world building<br>         real world links in Sangwheel Chronicles like using a white stag.<br>         using street players<br>         building out a noble hierarchy<br> - How to build a magic system that supports your plot<br>         why Sangwheel has blood magic<br>         why Sangwheel has gods<br> - How to add fantasy elements and make them feel real<br>          The bluron bird, the yanari and the masoraxi in Sangwheel.<br>           Keeping time<br>           Embedding fantasy elements.</a></p><p>ESC - Espoon science fiction- ja fantasiaseura</p><p><a><br>The event is part of the Helmet Libraries' common Magic Week, which invites fantasy literature lovers of all ages to the library. You can find all the events of the week by searching for Magic Week.</a></p><p>Photo by Tiina Hautala</p>"
            },
            "name": {
                "fi": "Maaginen viikko: Fantasiakirjailija Marie Mullanyn vierailu ",
                "en": "Magic Week: a visit by fantasy author Marie Mullany"
            },
            "short_description": {
                "fi": "Espoossa asuva eteläafrikkalainen fantasiakirjailija Marie Mullany tulee kertomaan maailman luomisesta fantasiakirjallisuudessa. Tilaisuus on englanniksi. ",
                "en": "Espoo-based South African fantasy writer Marie Mullany will talk about world creation in fantasy literature. the event is in English."
            },
            "location_extra_info": {
                "fi": "Stage",
                "en": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4os5a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4otvi",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4otdu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4otgy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4otj4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4otna/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agietdu3j4/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-05T07:45:48.283568Z",
            "last_modified_time": "2024-04-05T09:53:33.877423Z",
            "date_published": null,
            "start_time": "2024-04-08T05:00:00Z",
            "end_time": "2024-04-12T17: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,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Maaginen suunnistus lasten- ja nuorten osastolla</p><p>Tapahtuma on osa Helmet-kirjastojen yhteistä Maagista viikkoa, joka kutsuu eri-ikäiset fantasiakirjallisuuden ystävät kirjastoon. Löydät kaikki viikon tapahtumat hakusanalla Maaginen viikko.</p><p>Kuva: Tiina Hautala<br></p>"
            },
            "name": {
                "fi": "Maaginen viikko: Maaginen suunnistus lasten- ja nuorten osastolla"
            },
            "short_description": {
                "fi": "Maaginen viikko: Maaginen suunnistus lasten- ja nuorten osastolla"
            },
            "location_extra_info": {
                "fi": "Lasten- ja nuorten osasto "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4otvi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4otyq",
            "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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-05T09:39:33.277555Z",
            "last_modified_time": "2024-04-05T09:40:19.579540Z",
            "date_published": "2024-04-05T09:00:00Z",
            "start_time": "2024-04-23T14:00:00Z",
            "end_time": "2024-04-23T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Uudenmaan perussuomalaiset ry"
            },
            "description": {
                "fi": "<p>Valtiovarainministeri Riikka Purra saapuu Sellon kirjastoon 23.4.2024 klo 17:00 kertomaan julkisesta taloudesta. Tervetuloa mukaan kuuntelemaan!</p>",
                "sv": "<p>Finansminister Riikka Purra kommer till Sellobiblioteket 23.4.2024 kl. 17.00 för att tala om den offentliga ekonomin. </p>",
                "en": "<p>Minister of Finance Riikka Purra will arrive at Sello Library on 23.4.2024 at 17:00 to talk about public finances. </p>"
            },
            "name": {
                "fi": "Valtionvarainministeri Riikka Purra kertoo taloudesta",
                "sv": "Finansminister Riikka Purra talar om ekonomin",
                "en": "Minister of Finance Riikka Purra talks about the economy."
            },
            "short_description": {
                "fi": "Valtionvarainministeri Riikka Purra avaa Suomen taloudellista haastavaa tilannetta sekä vastaa yleisön kysymyksiin.",
                "sv": "Finansminister Riikka Purra berättar om den utmanande ekonomiska situationen i Finland och svarar på frågor från publiken.",
                "en": "Minister of Finance Riikka Purra opens up on the challenging economic situation in Finland and answers questions from the audience."
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4otyq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:aghkh7yrgy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:22/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2851/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                }
            ],
            "created_time": "2024-04-03T12:46:26.122206Z",
            "last_modified_time": "2024-04-05T09:26:24.817680Z",
            "date_published": null,
            "start_time": "2024-04-05T09:26:24.416000Z",
            "end_time": "2024-04-10T09: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": "2024-04-03T15:55:00+03:00",
            "enrolment_end_time": "2024-04-10T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>afijaeoifj</p>\n",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Testing 3.4.2024",
                "sv": "",
                "en": ""
            },
            "short_description": {
                "fi": "Testausta",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghkh7yrgy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aghoc4ot6u",
            "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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-04-05T07:56:03.799020Z",
            "last_modified_time": "2024-04-05T08:03:26.769765Z",
            "date_published": null,
            "start_time": "2024-04-13T10:00:00Z",
            "end_time": "2024-04-13T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Maaginen viikko: Lasten ja nuorten ohjelma </p><p>Elokuva klo 13-15 VOX lasten ja nuortentila</p>"
            },
            "name": {
                "fi": "Maaginen viikko: Elokuva klo 13-15 VOX lasten ja nuortentila"
            },
            "short_description": {
                "fi": "Maaginen viikko: Lasten ja nuorten ohjelma "
            },
            "location_extra_info": {
                "fi": "VOX"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4ot6u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}