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 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=helmet

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 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

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 /linkedevents/v1/event/?format=api&language=ru&page=3
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 4957,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&language=ru&page=4",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&language=ru&page=2"
    },
    "data": [
        {
            "id": "helsinki:aghgaxjgo4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20861/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "others",
            "sub_events": [],
            "images": [
                {
                    "id": 114098,
                    "license": "event_only",
                    "created_time": "2024-03-21T09:30:30.931131Z",
                    "last_modified_time": "2024-03-21T09:35:00.771041Z",
                    "name": "Kiasmassa vietetään ilmaispäivää joka kuun ensimmäisenä perjantaina.",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kiasma_k%C3%A4vij%C3%B6it%C3%A4_web.jpg",
                    "cropping": "268,0,1349,1080",
                    "photographer_name": "Kansallisgalleria / Pirje Mykkänen",
                    "alt_text": "Ihmisiä kulkee sisään museo ovesta",
                    "data_source": "helsinki",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/114098/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-03-21T09:35:01.252184Z",
            "last_modified_time": "2024-03-22T06:45:29.920470Z",
            "date_published": null,
            "start_time": "2024-04-05T07:00:00Z",
            "end_time": "2024-04-05T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": "Ekokompassi",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 2000,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://kiasma.fi/muut-tapahtumat/ilmaispaiva/",
                "en": "https://kiasma.fi/en/events/free-admission-day/"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider": {
                "fi": "Nykytaiteen museo Kiasma",
                "en": "Museum of Contemporary Art Kiasma"
            },
            "description": {
                "fi": "<p>Kiasman ilmaispäivä tarjoaa monipuolista koettavaa opastuksista kädentaitokohtaamiseen ja taiteilijatapaamiseen.</p><p>&nbsp;</p><p>Maksuttomat opastetut kierrokset ajankohtaisiin näyttelyihin:</p><p>13.00-14.00 kuvailutulkkaus suomeksi</p><p>17.00-18.00 suomi</p><p>17.00-18.00 venäjä</p><p>18.00-19.00 englanti</p><p>18.00-19.00 ruotsi</p><p>Ilmoittautuminen opastuksille infossa, max 20 osallistujaa. Lähtö aulasta.</p><p>&nbsp;</p><p>16.00-19.00 Kädentaitokohtaaminen Kuin kotonaan -näyttelyssä: Villa, 3. krs</p><p>Millaisia muistoja villa herättää sinussa? Miltä pesty ja karstattu villa tuntuu? Kuinka lanka syntyy? Tule seuraamaan langan valmistumista värttinällä. Kädentaitokohtaamisen ohjaa Ilta Hämäri.</p><p>&nbsp;</p><p>17.00–18.30 Taiteilijatapaaminen: Ahmed Al-Nawas, &nbsp;2. krs</p><p>Tapaa taiteilija Ahmed Al-Nawas Hostis-teoksensa äärellä Kuin kotonaan -kokoelmanäyttelyssä museon 2. kerroksessa. Tervetuloa juttelemaan!</p><p>&nbsp;</p><p>14.00-16.00 Draama-performanssi, 5. krs.</p><p>Taiteilija Nina Beierin performanssiteoksessa Draama näyttelijät kyynelehtivät näyttelytilassa kädessään tyhjä juomalasi.</p><p>&nbsp;</p><p>Nykytaiteen museo Kiasma</p><p>5.4.2024</p><p>10.00-20.00</p><p>Vapaa pääsy</p>",
                "en": "<p>Free admission to the exhibitions at Kiasma on the first Friday of the month.</p><p>&nbsp;</p><p>Free guided tours of current exhibitions:</p><p>13.00-14.00 in Finnish Audio Description</p><p>17.00-18.00 in Finnish</p><p>17.00-18.00 in Russian</p><p>18.00-19.00 in English</p><p>18.00-19.00 in Swedish</p><p>Registration at the info desk, max 20 participants, departure from the lobby</p><p>&nbsp;</p><p>16.00-19.00 Handicraft encounter Encounter in the Feels Like Home exhibition: Wool, 3rd floor</p><p>What memories does wool awaken in you? How does washed and carded wool feel? How is yarn made? Come and see how yarn is spun with a spindle. The Handicraft Encounter is guided by Ilta Hämäri.</p><p>&nbsp;</p><p>17.00-18.30 Meet the Artist Ahmed Al-Nawas, 2nd floor</p><p>Meet the artist Ahmed Al-Nawas by his artwork Hostis, which is located on the 2nd floor of the collection exhibition Feels like home.</p><p>&nbsp;</p><p>14.00-15.00 Drama performance, 5th floor</p><p>In Nina Beier's exhibition, you may see someone crying. This is a performance done by actors.</p><p>&nbsp;</p><p>Museum of Contemporary Art Kiasma</p><p>5.4.2024</p><p>10.00-20.00</p><p>Free entry</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kiasman ilmaispäivä",
                "en": "Free Admission Day at Kiasma"
            },
            "short_description": {
                "fi": "Kiasman ilmaispäivä tarjoaa monipuolista koettavaa opastuksista kädentaitokohtaamiseen ja taiteilijatapaamiseen.",
                "en": "Free admission to the exhibitions at Kiasma on the first Friday of the month."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghgaxjgo4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghbinzjra",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8158/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38192/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5319/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 106511,
                    "license": "event_only",
                    "created_time": "2024-03-06T14:40:28.654382Z",
                    "last_modified_time": "2024-03-06T14:42:22.790487Z",
                    "name": "Lukukoira Nella",
                    "url": "http://api.hel.fi/linkedevents/media/images/lukukoira_uusi_k_1.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "Helsingin kaupunginkirjasto",
                    "alt_text": "koira ja tyttö",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106511/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-06T14:42:23.251424Z",
            "last_modified_time": "2024-03-21T10:25:03.439889Z",
            "date_published": null,
            "start_time": "2024-05-02T15:00:00Z",
            "end_time": "2024-05-02T16:05:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää.</p><p>Yksi lukuhetki kestää n.15 min. Lukuhetkessä on paikalla lukija, koira ja koiran ohjaaja. Ohjaajan tehtävänä on valvoa lukuhetkeä sivusta, mutta ei puuttua sen kulkuun.</p><p>Lukukoira Nella&nbsp;ottaa lukijoita vastaan Munkkiniemen kirjastossa&nbsp;keskiviikkoisin:<strong> 22.5., 12.6.&nbsp;Poikkeuksellisesti&nbsp;torstaina 2.5. klo 18.00-19.05.&nbsp;</strong>Varaa oma lukuaikasi kirjaston asiakaspalvelusta tai numerosta 09-31085033.</p><p><i>\"Lukukoiratoiminnan tavoitteena on lukuharrastuksen edistäminen ja onnistuneen lukukokemuksen luominen. Koirien on&nbsp;&nbsp;todettu lisäävän ihmisen mielihyvähormonien määrää sekä rentouttavan mieltä, minkä vuoksi niiden vaikutus myös lukemiseen liittyvissä haasteissa on myönteinen. Koiralle lukemisen on todettu auttavan lukihäiriöisiä lapsia ja aikuisia. Koiran läsnäolo vähentää lukemiseen liittyvää kynnystä ja stressiä. Koira ei arvostele, takerru virheisiin tai keskeytä vaan lukijalla on rauha harjoitella lukemista.\"</i></p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "sv": "<p>Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.</p><p>En lässtund med läshunden pågår ca 15 minuter då barnelt får läsa en valfri bok för läshunden. Även hundens matte eller husse är närvarande under lässtunden.</p><p>Läshunden Nella tar emot läsare i Munksnäs bibliotek onsdagar:&nbsp;<strong> 22.5., 12.6 och på torsdag&nbsp;2.5&nbsp;klockan 18-19.05.&nbsp;</strong> Reservera en tid till läshunden genom att kontakta bibliotekets kundtjänst eller på numret 09-31085033.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "en": "<p>Are you&nbsp;learning how to read just now, or do you find&nbsp;reading out loud difficult? Come and practice reading with a&nbsp;Reading Dog!</p><p>During a 15-minute reading session, you can read aloud to&nbsp;Reading Dog Nella. Nella&nbsp;listens patiently without criticising or interrupting.&nbsp;</p><p>Reading Dog Nella&nbsp;takes appointments at <strong>Munkkiniemi&nbsp;Library on Wednesdays: 22.5., 12.6&nbsp;and on&nbsp;on Thursday 2.5&nbsp; from 6.00 to 7.05&nbsp;pm.&nbsp;</strong> Book your own reading time in the library's info&nbsp;or by telephone 09-31085033.&nbsp;</p><p>Nella's&nbsp;trainer will be present at the session.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lukukoira Nella",
                "sv": "Läshunden Nella",
                "en": "Reading Dog Nella"
            },
            "short_description": {
                "fi": "Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija.",
                "sv": "Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.",
                "en": "Are you learning how to read just now, or do you find reading out loud difficult? Come and practice reading with a Reading Dog!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbinzjra/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghbiprucy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8158/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38192/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5319/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiprnqi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiprqdu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 106511,
                    "license": "event_only",
                    "created_time": "2024-03-06T14:40:28.654382Z",
                    "last_modified_time": "2024-03-06T14:42:22.790487Z",
                    "name": "Lukukoira Nella",
                    "url": "http://api.hel.fi/linkedevents/media/images/lukukoira_uusi_k_1.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "Helsingin kaupunginkirjasto",
                    "alt_text": "koira ja tyttö",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106511/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-06T14:50:04.707164Z",
            "last_modified_time": "2024-03-21T10:24:06.104181Z",
            "date_published": null,
            "start_time": "2024-05-22T15:00:00Z",
            "end_time": "2024-06-12T16:05:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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": "",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää.</p><p>Yksi lukuhetki kestää n.15 min. Lukuhetkessä on paikalla lukija, koira ja koiran ohjaaja. Ohjaajan tehtävänä on valvoa lukuhetkeä sivusta, mutta ei puuttua sen kulkuun.</p><p>Lukukoira Nella&nbsp;ottaa lukijoita vastaan Munkkiniemen kirjastossa&nbsp;keskiviikkoisin:<strong>&nbsp;22.5., 12.6.&nbsp;Poikkeuksellisesti&nbsp;torstaina 2.5. klo 18.00-19.05.&nbsp;</strong>Varaa oma lukuaikasi kirjaston asiakaspalvelusta tai numerosta 09-31085033.</p><p><i>\"Lukukoiratoiminnan tavoitteena on lukuharrastuksen edistäminen ja onnistuneen lukukokemuksen luominen. Koirien on&nbsp;&nbsp;todettu lisäävän ihmisen mielihyvähormonien määrää sekä rentouttavan mieltä, minkä vuoksi niiden vaikutus myös lukemiseen liittyvissä haasteissa on myönteinen. Koiralle lukemisen on todettu auttavan lukihäiriöisiä lapsia ja aikuisia. Koiran läsnäolo vähentää lukemiseen liittyvää kynnystä ja stressiä. Koira ei arvostele, takerru virheisiin tai keskeytä vaan lukijalla on rauha harjoitella lukemista.\"</i></p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "sv": "<p>Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.</p><p>En lässtund med läshunden pågår ca 15 minuter då barnelt får läsa en valfri bok för läshunden. Även hundens matte eller husse är närvarande under lässtunden.</p><p>Läshunden Nella tar emot läsare i Munksnäs bibliotek onsdagar:&nbsp;<strong>17.1., 7.2., 28.2., 20.3., 10.4., 22.5., 12.6 och på torsdag&nbsp;2.5&nbsp;klockan 18-19.05.&nbsp;</strong> Reservera en tid till läshunden genom att kontakta bibliotekets kundtjänst eller på numret 09-31085033.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "en": "<p>Are you&nbsp;learning how to read just now, or do you find&nbsp;reading out loud difficult? Come and practice reading with a&nbsp;Reading Dog!</p><p>During a 15-minute reading session, you can read aloud to&nbsp;Reading Dog Nella. Nella&nbsp;listens patiently without criticising or interrupting.&nbsp;</p><p>Reading Dog Nella&nbsp;takes appointments at <strong>Munkkiniemi&nbsp;Library on Wednesdays: 22.5., 12.6&nbsp;and on&nbsp;on Thursday 2.5&nbsp; from 6.00 to 7.05&nbsp;pm.&nbsp;</strong> Book your own reading time in the library's info&nbsp;or by telephone 09-31085033.&nbsp;</p><p>Nella's&nbsp;trainer will be present at the session.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lukukoira Nella",
                "sv": "Läshunden Nella",
                "en": "Reading Dog Nella"
            },
            "short_description": {
                "fi": "Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija",
                "sv": "Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.",
                "en": "Are you learning how to read just now, or do you find reading out loud difficult? Come and practice reading with a Reading Dog!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiprucy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghbiprqdu",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8158/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38192/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5319/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiprucy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 106511,
                    "license": "event_only",
                    "created_time": "2024-03-06T14:40:28.654382Z",
                    "last_modified_time": "2024-03-06T14:42:22.790487Z",
                    "name": "Lukukoira Nella",
                    "url": "http://api.hel.fi/linkedevents/media/images/lukukoira_uusi_k_1.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "Helsingin kaupunginkirjasto",
                    "alt_text": "koira ja tyttö",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106511/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-06T14:50:03.689471Z",
            "last_modified_time": "2024-03-21T10:24:05.271189Z",
            "date_published": null,
            "start_time": "2024-06-12T15:00:00Z",
            "end_time": "2024-06-12T16:05:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää.</p><p>Yksi lukuhetki kestää n.15 min. Lukuhetkessä on paikalla lukija, koira ja koiran ohjaaja. Ohjaajan tehtävänä on valvoa lukuhetkeä sivusta, mutta ei puuttua sen kulkuun.</p><p>Lukukoira Nella&nbsp;ottaa lukijoita vastaan Munkkiniemen kirjastossa&nbsp;keskiviikkoisin:<strong>&nbsp;22.5., 12.6.&nbsp;Poikkeuksellisesti&nbsp;torstaina 2.5. klo 18.00-19.05.&nbsp;</strong>Varaa oma lukuaikasi kirjaston asiakaspalvelusta tai numerosta 09-31085033.</p><p><i>\"Lukukoiratoiminnan tavoitteena on lukuharrastuksen edistäminen ja onnistuneen lukukokemuksen luominen. Koirien on&nbsp;&nbsp;todettu lisäävän ihmisen mielihyvähormonien määrää sekä rentouttavan mieltä, minkä vuoksi niiden vaikutus myös lukemiseen liittyvissä haasteissa on myönteinen. Koiralle lukemisen on todettu auttavan lukihäiriöisiä lapsia ja aikuisia. Koiran läsnäolo vähentää lukemiseen liittyvää kynnystä ja stressiä. Koira ei arvostele, takerru virheisiin tai keskeytä vaan lukijalla on rauha harjoitella lukemista.\"</i></p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "sv": "<p>Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.</p><p>En lässtund med läshunden pågår ca 15 minuter då barnelt får läsa en valfri bok för läshunden. Även hundens matte eller husse är närvarande under lässtunden.</p><p>Läshunden Nella tar emot läsare i Munksnäs bibliotek onsdagar:&nbsp;<strong>17.1., 7.2., 28.2., 20.3., 10.4., 22.5., 12.6 och på torsdag&nbsp;2.5&nbsp;klockan 18-19.05.&nbsp;</strong> Reservera en tid till läshunden genom att kontakta bibliotekets kundtjänst eller på numret 09-31085033.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "en": "<p>Are you&nbsp;learning how to read just now, or do you find&nbsp;reading out loud difficult? Come and practice reading with a&nbsp;Reading Dog!</p><p>During a 15-minute reading session, you can read aloud to&nbsp;Reading Dog Nella. Nella&nbsp;listens patiently without criticising or interrupting.&nbsp;</p><p>Reading Dog Nella&nbsp;takes appointments at <strong>Munkkiniemi&nbsp;Library on Wednesdays: 22.5., 12.6&nbsp;and on&nbsp;on Thursday 2.5&nbsp; from 6.00 to 7.05&nbsp;pm.&nbsp;</strong> Book your own reading time in the library's info&nbsp;or by telephone 09-31085033.&nbsp;</p><p>Nella's&nbsp;trainer will be present at the session.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lukukoira Nella",
                "sv": "Läshunden Nella",
                "en": "Reading Dog Nella"
            },
            "short_description": {
                "fi": "Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija",
                "sv": "Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.",
                "en": "Are you learning how to read just now, or do you find reading out loud difficult? Come and practice reading with a Reading Dog!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiprqdu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghbiprnqi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8158/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38192/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5319/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiprucy/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u4804005010",
            "sub_events": [],
            "images": [
                {
                    "id": 106511,
                    "license": "event_only",
                    "created_time": "2024-03-06T14:40:28.654382Z",
                    "last_modified_time": "2024-03-06T14:42:22.790487Z",
                    "name": "Lukukoira Nella",
                    "url": "http://api.hel.fi/linkedevents/media/images/lukukoira_uusi_k_1.jpg",
                    "cropping": "100,0,501,400",
                    "photographer_name": "Helsingin kaupunginkirjasto",
                    "alt_text": "koira ja tyttö",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u4804005010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106511/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-06T14:50:03.023034Z",
            "last_modified_time": "2024-03-21T10:24:04.947624Z",
            "date_published": null,
            "start_time": "2024-05-22T15:00:00Z",
            "end_time": "2024-05-22T16:05:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "location_extra_info": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "provider": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija, jonka kanssa lukemista ei tarvitse jännittää.</p><p>Yksi lukuhetki kestää n.15 min. Lukuhetkessä on paikalla lukija, koira ja koiran ohjaaja. Ohjaajan tehtävänä on valvoa lukuhetkeä sivusta, mutta ei puuttua sen kulkuun.</p><p>Lukukoira Nella&nbsp;ottaa lukijoita vastaan Munkkiniemen kirjastossa&nbsp;keskiviikkoisin:<strong>&nbsp;22.5., 12.6.&nbsp;Poikkeuksellisesti&nbsp;torstaina 2.5. klo 18.00-19.05.&nbsp;</strong>Varaa oma lukuaikasi kirjaston asiakaspalvelusta tai numerosta 09-31085033.</p><p><i>\"Lukukoiratoiminnan tavoitteena on lukuharrastuksen edistäminen ja onnistuneen lukukokemuksen luominen. Koirien on&nbsp;&nbsp;todettu lisäävän ihmisen mielihyvähormonien määrää sekä rentouttavan mieltä, minkä vuoksi niiden vaikutus myös lukemiseen liittyvissä haasteissa on myönteinen. Koiralle lukemisen on todettu auttavan lukihäiriöisiä lapsia ja aikuisia. Koiran läsnäolo vähentää lukemiseen liittyvää kynnystä ja stressiä. Koira ei arvostele, takerru virheisiin tai keskeytä vaan lukijalla on rauha harjoitella lukemista.\"</i></p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "sv": "<p>Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.</p><p>En lässtund med läshunden pågår ca 15 minuter då barnelt får läsa en valfri bok för läshunden. Även hundens matte eller husse är närvarande under lässtunden.</p><p>Läshunden Nella tar emot läsare i Munksnäs bibliotek onsdagar:&nbsp;<strong>17.1., 7.2., 28.2., 20.3., 10.4., 22.5., 12.6 och på torsdag&nbsp;2.5&nbsp;klockan 18-19.05.&nbsp;</strong> Reservera en tid till läshunden genom att kontakta bibliotekets kundtjänst eller på numret 09-31085033.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>",
                "en": "<p>Are you&nbsp;learning how to read just now, or do you find&nbsp;reading out loud difficult? Come and practice reading with a&nbsp;Reading Dog!</p><p>During a 15-minute reading session, you can read aloud to&nbsp;Reading Dog Nella. Nella&nbsp;listens patiently without criticising or interrupting.&nbsp;</p><p>Reading Dog Nella&nbsp;takes appointments at <strong>Munkkiniemi&nbsp;Library on Wednesdays: 22.5., 12.6&nbsp;and on&nbsp;on Thursday 2.5&nbsp; from 6.00 to 7.05&nbsp;pm.&nbsp;</strong> Book your own reading time in the library's info&nbsp;or by telephone 09-31085033.&nbsp;</p><p>Nella's&nbsp;trainer will be present at the session.</p><p><a href=\"https://www.kennelliitto.fi/koirat/lukukoirat\">Kennelliittokoirat</a></p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Lukukoira Nella",
                "sv": "Läshunden Nella",
                "en": "Reading Dog Nella"
            },
            "short_description": {
                "fi": "Opetteletko juuri lukemaan tai lukeminen on muuten hankalaa? Tule lukemaan lukukoiralle. Lukukoira on kärsivällinen kuuntelija",
                "sv": "Håller du på att lära dej läsa eller tycker du att det känns jobbigt med läsningen? Kom och läs för vår läshund. Läshunden är en snäll och tålmodig lyssnare.",
                "en": "Are you learning how to read just now, or do you find reading out loud difficult? Come and practice reading with a Reading Dog!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghbiprnqi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdhg6ufi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "ru": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6kz4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6nqa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6o2i/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6qge/?format=api"
                }
            ],
            "images": [
                {
                    "id": 107360,
                    "license": "event_only",
                    "created_time": "2024-03-12T16:59:28.856011Z",
                    "last_modified_time": "2024-03-12T17:00:31.206294Z",
                    "name": "Kuva: Karkki Havaste/Myyrmäen kirjasto",
                    "url": "http://api.hel.fi/linkedevents/media/images/Govorim_LINKED_EVENTS.png",
                    "cropping": "201,0,999,798",
                    "photographer_name": "Karkki Havaste",
                    "alt_text": "Kolme henkilöä juttelee pöydän ääressä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-12T17:00:34.230992Z",
            "last_modified_time": "2024-03-20T12:57:27.501665Z",
            "date_published": null,
            "start_time": "2024-04-02T10:00:00Z",
            "end_time": "2024-05-14T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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": "",
                "ru": ""
            },
            "location_extra_info": {
                "fi": "2. kerros",
                "ru": "2-й этаж"
            },
            "provider": {
                "fi": "",
                "ru": ""
            },
            "description": {
                "fi": "<p>Tervetuloa puhumaan venäjää rennossa seurassa!&nbsp;</p><p>Taitotasollasi ei ole väliä. Mukaan ovat tervetulleita kaikki keskustelijat vasta-alkajista natiivipuhujiin.&nbsp;</p><p>Kirjaston työntekijä ohjaa keskustelua, mutta keskustelu on vapaamuotoista.&nbsp;&nbsp;</p><p>Venäjänkielinen keskusteluryhmä kokoontuu tiistaisin&nbsp;kaksi kertaa kuukaudessa kirjaston 2. kerroksessa kello 13–14.&nbsp;</p><p>Kevään 2024 loput kokoontumiskerrat:&nbsp;2.4., 9.4., 7.5. ja 14.5.&nbsp;</p>",
                "ru": "<p>Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!&nbsp;</p><p>Нам не важно, какого уровня ваше знание русского языка, мы приглашаем всех от начинающих до носителей русского языка как родного.&nbsp;</p><p>Беседу ведет сотрудник библиотеки, но разговор всегда можно продожить в свободной форме.&nbsp;</p><p>Группа для бесед на русском языке собирается по вторникам два раза в месяц на 2-м этаже библиотеки с 13.00-14.00 часов.&nbsp;</p><p>Весенние групповые встречи 2024 года:&nbsp; 2.4., 9.4., 7.5.&nbsp;и 14.5.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Govorim po russki - venäjänkielinen keskusteluryhmä",
                "ru": "говорим по-русски"
            },
            "short_description": {
                "fi": "Tervetuloa puhumaan venäjää rennossa seurassa! ",
                "ru": "Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6ufi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdhg6qge",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6ufi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "ru": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 107360,
                    "license": "event_only",
                    "created_time": "2024-03-12T16:59:28.856011Z",
                    "last_modified_time": "2024-03-12T17:00:31.206294Z",
                    "name": "Kuva: Karkki Havaste/Myyrmäen kirjasto",
                    "url": "http://api.hel.fi/linkedevents/media/images/Govorim_LINKED_EVENTS.png",
                    "cropping": "201,0,999,798",
                    "photographer_name": "Karkki Havaste",
                    "alt_text": "Kolme henkilöä juttelee pöydän ääressä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-12T17:00:33.209539Z",
            "last_modified_time": "2024-03-20T12:57:26.488753Z",
            "date_published": null,
            "start_time": "2024-05-14T10:00:00Z",
            "end_time": "2024-05-14T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "ru": ""
            },
            "location_extra_info": {
                "fi": "2. kerros",
                "ru": "2-й этаж"
            },
            "provider": {
                "fi": "",
                "ru": ""
            },
            "description": {
                "fi": "<p>Tervetuloa puhumaan venäjää rennossa seurassa!&nbsp;</p><p>Taitotasollasi ei ole väliä. Mukaan ovat tervetulleita kaikki keskustelijat vasta-alkajista natiivipuhujiin.&nbsp;</p><p>Kirjaston työntekijä ohjaa keskustelua, mutta keskustelu on vapaamuotoista.&nbsp;&nbsp;</p><p>Venäjänkielinen keskusteluryhmä kokoontuu tiistaisin&nbsp;kaksi kertaa kuukaudessa kirjaston 2. kerroksessa kello 13–14.&nbsp;</p><p>Kevään 2024 loput kokoontumiskerrat:&nbsp;2.4., 9.4., 7.5. ja 14.5.&nbsp;</p>",
                "ru": "<p>Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!&nbsp;</p><p>Нам не важно, какого уровня ваше знание русского языка, мы приглашаем всех от начинающих до носителей русского языка как родного.&nbsp;</p><p>Беседу ведет сотрудник библиотеки, но разговор всегда можно продожить в свободной форме.&nbsp;</p><p>Группа для бесед на русском языке собирается по вторникам два раза в месяц на 2-м этаже библиотеки с 13.00-14.00 часов.&nbsp;</p><p>Весенние групповые встречи 2024 года:&nbsp; 2.4., 9.4., 7.5.&nbsp;и 14.5.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Govorim po russki - venäjänkielinen keskusteluryhmä",
                "ru": "говорим по-русски"
            },
            "short_description": {
                "fi": "Tervetuloa puhumaan venäjää rennossa seurassa! ",
                "ru": "Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6qge/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdhg6o2i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6ufi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "ru": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 107360,
                    "license": "event_only",
                    "created_time": "2024-03-12T16:59:28.856011Z",
                    "last_modified_time": "2024-03-12T17:00:31.206294Z",
                    "name": "Kuva: Karkki Havaste/Myyrmäen kirjasto",
                    "url": "http://api.hel.fi/linkedevents/media/images/Govorim_LINKED_EVENTS.png",
                    "cropping": "201,0,999,798",
                    "photographer_name": "Karkki Havaste",
                    "alt_text": "Kolme henkilöä juttelee pöydän ääressä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-12T17:00:32.859878Z",
            "last_modified_time": "2024-03-20T12:57:26.165292Z",
            "date_published": null,
            "start_time": "2024-05-07T10:00:00Z",
            "end_time": "2024-05-07T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "ru": ""
            },
            "location_extra_info": {
                "fi": "2. kerros",
                "ru": "2-й этаж"
            },
            "provider": {
                "fi": "",
                "ru": ""
            },
            "description": {
                "fi": "<p>Tervetuloa puhumaan venäjää rennossa seurassa!&nbsp;</p><p>Taitotasollasi ei ole väliä. Mukaan ovat tervetulleita kaikki keskustelijat vasta-alkajista natiivipuhujiin.&nbsp;</p><p>Kirjaston työntekijä ohjaa keskustelua, mutta keskustelu on vapaamuotoista.&nbsp;&nbsp;</p><p>Venäjänkielinen keskusteluryhmä kokoontuu tiistaisin&nbsp;kaksi kertaa kuukaudessa kirjaston 2. kerroksessa kello 13–14.&nbsp;</p><p>Kevään 2024 loput kokoontumiskerrat:&nbsp;2.4., 9.4., 7.5. ja 14.5.&nbsp;</p>",
                "ru": "<p>Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!&nbsp;</p><p>Нам не важно, какого уровня ваше знание русского языка, мы приглашаем всех от начинающих до носителей русского языка как родного.&nbsp;</p><p>Беседу ведет сотрудник библиотеки, но разговор всегда можно продожить в свободной форме.&nbsp;</p><p>Группа для бесед на русском языке собирается по вторникам два раза в месяц на 2-м этаже библиотеки с 13.00-14.00 часов.&nbsp;</p><p>Весенние групповые встречи 2024 года:&nbsp; 2.4., 9.4., 7.5.&nbsp;и 14.5.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Govorim po russki - venäjänkielinen keskusteluryhmä",
                "ru": "говорим по-русски"
            },
            "short_description": {
                "fi": "Tervetuloa puhumaan venäjää rennossa seurassa! ",
                "ru": "Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6o2i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdhg6nqa",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6ufi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "ru": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 107360,
                    "license": "event_only",
                    "created_time": "2024-03-12T16:59:28.856011Z",
                    "last_modified_time": "2024-03-12T17:00:31.206294Z",
                    "name": "Kuva: Karkki Havaste/Myyrmäen kirjasto",
                    "url": "http://api.hel.fi/linkedevents/media/images/Govorim_LINKED_EVENTS.png",
                    "cropping": "201,0,999,798",
                    "photographer_name": "Karkki Havaste",
                    "alt_text": "Kolme henkilöä juttelee pöydän ääressä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-12T17:00:32.521749Z",
            "last_modified_time": "2024-03-20T12:57:25.828147Z",
            "date_published": null,
            "start_time": "2024-04-09T10:00:00Z",
            "end_time": "2024-04-09T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "ru": ""
            },
            "location_extra_info": {
                "fi": "2. kerros",
                "ru": "2-й этаж"
            },
            "provider": {
                "fi": "",
                "ru": ""
            },
            "description": {
                "fi": "<p>Tervetuloa puhumaan venäjää rennossa seurassa!&nbsp;</p><p>Taitotasollasi ei ole väliä. Mukaan ovat tervetulleita kaikki keskustelijat vasta-alkajista natiivipuhujiin.&nbsp;</p><p>Kirjaston työntekijä ohjaa keskustelua, mutta keskustelu on vapaamuotoista.&nbsp;&nbsp;</p><p>Venäjänkielinen keskusteluryhmä kokoontuu tiistaisin&nbsp;kaksi kertaa kuukaudessa kirjaston 2. kerroksessa kello 13–14.&nbsp;</p><p>Kevään 2024 loput kokoontumiskerrat:&nbsp;2.4., 9.4., 7.5. ja 14.5.&nbsp;</p>",
                "ru": "<p>Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!&nbsp;</p><p>Нам не важно, какого уровня ваше знание русского языка, мы приглашаем всех от начинающих до носителей русского языка как родного.&nbsp;</p><p>Беседу ведет сотрудник библиотеки, но разговор всегда можно продожить в свободной форме.&nbsp;</p><p>Группа для бесед на русском языке собирается по вторникам два раза в месяц на 2-м этаже библиотеки с 13.00-14.00 часов.&nbsp;</p><p>Весенние групповые встречи 2024 года:&nbsp; 2.4., 9.4., 7.5.&nbsp;и 14.5.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Govorim po russki - venäjänkielinen keskusteluryhmä",
                "ru": "говорим по-русски"
            },
            "short_description": {
                "fi": "Tervetuloa puhumaan venäjää rennossa seurassa! ",
                "ru": "Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6nqa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdhg6kz4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6ufi/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "ru": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 107360,
                    "license": "event_only",
                    "created_time": "2024-03-12T16:59:28.856011Z",
                    "last_modified_time": "2024-03-12T17:00:31.206294Z",
                    "name": "Kuva: Karkki Havaste/Myyrmäen kirjasto",
                    "url": "http://api.hel.fi/linkedevents/media/images/Govorim_LINKED_EVENTS.png",
                    "cropping": "201,0,999,798",
                    "photographer_name": "Karkki Havaste",
                    "alt_text": "Kolme henkilöä juttelee pöydän ääressä",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107360/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2024-03-12T17:00:31.833518Z",
            "last_modified_time": "2024-03-20T12:57:25.462764Z",
            "date_published": null,
            "start_time": "2024-04-02T10:00:00Z",
            "end_time": "2024-04-02T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "ru": ""
            },
            "location_extra_info": {
                "fi": "2. kerros",
                "ru": "2-й этаж"
            },
            "provider": {
                "fi": "",
                "ru": ""
            },
            "description": {
                "fi": "<p>Tervetuloa puhumaan venäjää rennossa seurassa!&nbsp;</p><p>Taitotasollasi ei ole väliä. Mukaan ovat tervetulleita kaikki keskustelijat vasta-alkajista natiivipuhujiin.&nbsp;</p><p>Kirjaston työntekijä ohjaa keskustelua, mutta keskustelu on vapaamuotoista.&nbsp;&nbsp;</p><p>Venäjänkielinen keskusteluryhmä kokoontuu tiistaisin&nbsp;kaksi kertaa kuukaudessa kirjaston 2. kerroksessa kello 13–14.&nbsp;</p><p>Kevään 2024 loput kokoontumiskerrat:&nbsp;2.4., 9.4., 7.5. ja 14.5.&nbsp;</p>",
                "ru": "<p>Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!&nbsp;</p><p>Нам не важно, какого уровня ваше знание русского языка, мы приглашаем всех от начинающих до носителей русского языка как родного.&nbsp;</p><p>Беседу ведет сотрудник библиотеки, но разговор всегда можно продожить в свободной форме.&nbsp;</p><p>Группа для бесед на русском языке собирается по вторникам два раза в месяц на 2-м этаже библиотеки с 13.00-14.00 часов.&nbsp;</p><p>Весенние групповые встречи 2024 года:&nbsp; 2.4., 9.4., 7.5.&nbsp;и 14.5.&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Govorim po russki - venäjänkielinen keskusteluryhmä",
                "ru": "говорим по-русски"
            },
            "short_description": {
                "fi": "Tervetuloa puhumaan venäjää rennossa seurassa! ",
                "ru": "Добро пожаловать в нашу разговорную группу, где мы беседуем на русском языке в спокойной, расслабленной обстановке!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhg6kz4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghdhp572i",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": "",
                        "ru": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 107372,
                    "license": "event_only",
                    "created_time": "2024-03-12T17:38:55.210390Z",
                    "last_modified_time": "2024-03-12T17:39:47.860281Z",
                    "name": "Kuva: Canva",
                    "url": "http://api.hel.fi/linkedevents/media/images/Skazka_LINKED_EVENTS.png",
                    "cropping": "201,0,999,798",
                    "photographer_name": "",
                    "alt_text": "Avonaisessa satukirjassa näkyy eläinhahmoja",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/107372/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-12T17:39:48.316752Z",
            "last_modified_time": "2024-03-20T12:56:46.342731Z",
            "date_published": null,
            "start_time": "2024-04-25T13:00:00Z",
            "end_time": "2024-04-25T13:45:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "",
                "ru": ""
            },
            "location_extra_info": {
                "fi": "Hymiö (2. kerros)",
                "ru": "2-й этаж"
            },
            "provider": {
                "fi": "",
                "ru": ""
            },
            "description": {
                "fi": "<p>Tervetuloa satujen maailmaan!</p><p>Myyrmäen kirjaston kaikille avoin venäjänkielinen satutuokio sopii noin 3-7-vuotiaille lapsille.</p><p>Asiasana: lastenkulttuuri</p>",
                "ru": "<p>Приглашаем малышей 2-6 лет на час сказки на русском&nbsp;в библиотеке Мююрмяки.</p><p><br>Вход свободный.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Skazka - venäjänkielinen satutuokio",
                "ru": "сказка по-русски"
            },
            "short_description": {
                "fi": "Tervetuloa satujen maailmaan!",
                "ru": "Добро пожаловать в мир сказок!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghdhp572i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:aghfwsttai",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18703/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "vantaa:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 111877,
                    "license": "event_only",
                    "created_time": "2024-03-20T09:52:26.159170Z",
                    "last_modified_time": "2024-03-20T09:56:29.237499Z",
                    "name": "asdf4.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/asdf4.jpg",
                    "cropping": "282,0,1403,1122",
                    "photographer_name": "Kuva: Canva",
                    "alt_text": "kuvassa on keväisiä kukkia",
                    "data_source": "helsinki",
                    "publisher": "vantaa:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/111877/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-03-20T09:56:29.579973Z",
            "last_modified_time": "2024-03-20T09:56:29.579995Z",
            "date_published": null,
            "start_time": "2024-04-10T14:00:00Z",
            "end_time": "2024-04-10T15: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": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": "Lukutila Laguuni, lastenosasto"
            },
            "provider": {
                "fi": "Tikkurilan kirjasto"
            },
            "description": {
                "fi": "<p>&nbsp;</p><p><strong>Весенний праздник в библиотеке Тиккурила!</strong></p><p>&nbsp;</p><p>Приглашаем мальчишек и девчонок,</p><p>а также их родителей в библиотеку Тиккурила 10.4.2024 c 17.00 до 18.30</p><p>В программе:</p><p>17.00 Весенняя сказка “ Мой цветок” на русском языке.</p><p>17.30 Поем все вместе весеннюю песенку “Весенний хоровод”</p><p>17.45 - 18.30 Мастерская весенних поделок.</p><p>Вход свободный</p><p>Добро пожаловать!</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Весенний праздник / Kevätjuhla"
            },
            "short_description": {
                "fi": "venäjänkielinen kevätjuhla tikkurilan kirjastossa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:aghfwsttai/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282208",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8199/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11399/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 106546,
                    "license": "cc_by",
                    "created_time": "2024-03-07T11:27:48.574171Z",
                    "last_modified_time": "2024-03-07T11:27:48.574205Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{10A15927-0DD2-4A06-96B2-3FBBB2FFE2CA}/110017",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106546/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-02-22T14:27:46.123884Z",
            "last_modified_time": "2024-03-13T14:30:13.323175Z",
            "date_published": "2024-02-22T12:00:00Z",
            "start_time": "2024-03-19T16:00:00Z",
            "end_time": "2024-03-19T17: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,
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Hyvää Satakielikuukautta!</p><p>Satakielikuukausi on äidinkieltä ja kielellistä moninaisuutta juhliva jakso, jota vietetään Kansainvälisen äidinkielen päivän 21.2. ja Maailman runouden päivän 21.3. välissä.</p><p>Vallilan kirjastossa satakielikuukautta juhlistetaan suomeksi ja venäjäksi kaksikielisillä satutuokioilla sekä lapsille, että aikuisille!</p><p>Suomen- ja venäjänkielinen satutuokio aikuisille ti 19.3. klo 18.</p><p>Tuokioissa kuullaan samat tarinat molemmilla kielillä.</p><p>Tervetuloa!</p><p>В Финляндии начинается празднование Месяца ста языков!</p><p>Месяц ста языков (Satakielikuukausi) — это ежегодный фестиваль многоя зычия, который начинается в Международный день родного языка (21 февраля) и заканчивается Всемирным днем поэзии (21 марта).</p><p>В библиотеке Валлила в честь Месяца ста языков пройдут два двуязычных часа сказки для детей и взрослых!</p><p>Двуязычный час сказки для взрослых во вторник 19.3. в 18.00.</p><p>Одни и те же тексты будут прочитаны на финском и русском языках.</p><p>Добро пожаловать!</p>",
                "ru": "<p>В Финляндии начинается празднование Месяца ста языков!</p><p>Месяц ста языков (Satakielikuukausi) — это ежегодный фестиваль многоя зычия, который начинается в Международный день родного языка (21 февраля) и заканчивается Всемирным днем поэзии (21 марта).</p><p>В библиотеке Валлила в честь Месяца ста языков пройдут два двуязычных часа сказки для детей и взрослых!</p><p>Двуязычный час сказки для взрослых во вторник 19.3. в 18.00.</p><p>Одни и те же тексты будут прочитаны на финском и русском языках.</p><p>Добро пожаловать!</p><p>Hyvää Satakielikuukautta!</p><p>Satakielikuukausi on äidinkieltä ja kielellistä moninaisuutta juhliva jakso, jota vietetään Kansainvälisen äidinkielen päivän 21.2. ja Maailman runouden päivän 21.3. välissä.</p><p>Vallilan kirjastossa satakielikuukautta juhlistetaan suomeksi ja venäjäksi kaksikielisillä satutuokioilla sekä lapsille, että aikuisille!</p><p>Suomen- ja venäjänkielinen satutuokio aikuisille ti 19.3. klo 18.</p><p>Tuokioissa kuullaan samat tarinat molemmilla kielillä.</p><p>Tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Satakielikuukauden satutuokio aikuisille",
                "ru": "Двуязычный час сказки для взрослых"
            },
            "short_description": {
                "fi": "Satakielikuukauden kaksikielinen satutuokio aikuisille Vallilan kirjastossa ti 19.3. klo 18",
                "ru": "Двуязычный час сказки для взрослых во вторник 19.3. в 18.00"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:282208/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:281047",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11286/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 105088,
                    "license": "cc_by",
                    "created_time": "2024-02-02T10:27:52.863621Z",
                    "last_modified_time": "2024-02-02T10:27:52.863636Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{C75BEC4F-60A7-4B72-9842-E75336E6EC7B}/100545",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105088/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-02T10:28:08.080349Z",
            "last_modified_time": "2024-03-12T20:29:41.109730Z",
            "date_published": "2024-02-02T08:46:00Z",
            "start_time": "2024-03-14T15:00:00Z",
            "end_time": "2024-03-14T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan satumaailmaan ja kuuntelemaan satua venäjäksi!</p><p>Satakielikuukauden tarinatorstait tarjoavat viikoittain elämyksellisiä satutuokioita eri kielillä Itäkeskuksen kirjaston lastenosaston pelinurkassa. Satutuokiot ovat suunnattu kaikenikäisille 3-vuotiaista ylöspäin. Satuhetken pituus on noin 30 minuuttia.</p><p>Tulevat tarinatorstait</p><ul> <li>to 21.3. Satutuokio ranskaksi</li> </ul></p><p>Satakielikuukausi on vuosittainen monikielisyyttä juhliva jakso Kansainvälisen äidinkielen päivän (21.2.) ja Maailman runouden päivän (21.3.) välillä. Kuukauden aikana myös kirjastoissa järjestetään tapahtumia, joissa tuodaan esiin kielellistä rikkautta ja tarkastellaan äidinkielen ja kielten merkitystä taiteen, kohtaamisten ja yhdessä tekemisen kautta.</p>",
                "ru": "<p>\"Месяц ста языков\" снова в библиотеках Helmet!</p><p>Приглашаем детей в возрасте от 3 лет и старше погрузиться в волшебный мир и послушать сказку на русском языке 14 марта с 17:00 до 17:30 в библиотеке Итякескус.</p><p>В течение \"Месяца ста языков\" в библиотеке Итякескус в игровом уголке детского отдела проводятся так называемые \"Четверги сказок\". Приходите послушать сказки на разных языках! Продолжительность мероприятия примерно 30 минут.</p><p>Следующий час сказки: 21.3 в 17:00 на французском языке</p><p>Satakielikuukausi или \"Месяц ста языков\" - это ежегодный фестиваль родного языка и языкового многообразия, который проводится в Финляндии с 2015 года. Библиотекари Helmet активно участвуют в нём и каждый год готовят интересную программу для своих посетителей. По традиции \"Месяц ста языков\" начинается 21 февраля в День родного языка и завершается 21 марта в Международный день поэзии.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Venäjänkielinen satutuokio",
                "ru": "Час сказки на русском языке"
            },
            "short_description": {
                "fi": "Tervetuloa sukeltamaan satumaailmaan ja kuuntelemaan satua venäjäksi!",
                "ru": "Приглашаем детей в возрасте от 3 лет и старше погрузиться в волшебный мир и послушать сказку на русском языке"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:281047/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282284",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10657/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10844/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11383/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11779/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11781/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11876/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 105935,
                    "license": "cc_by",
                    "created_time": "2024-02-24T01:27:18.114873Z",
                    "last_modified_time": "2024-02-24T01:27:18.114889Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{2E47E503-017A-41C6-9FCF-AB6916EE5044}/109780",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105935/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-02-26T08:28:50.070749Z",
            "last_modified_time": "2024-03-09T12:30:21.147522Z",
            "date_published": "2024-02-25T22:00:00Z",
            "start_time": "2024-03-09T14:00:00Z",
            "end_time": "2024-03-09T15: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,
            "location_extra_info": {
                "fi": "Sellon kirjaston lavalla",
                "ru": "Сцена библиотеки Селло"
            },
            "provider": null,
            "description": {
                "fi": "<p> <strong>Konsertti </strong> <strong> <em>\"Lauluja rakkaudesta\" </em> </strong> </p><p> <strong>Shaika Balalaika </strong> </p><p> <strong>esiintyy Sello-kirjaston lavalla </strong> </p><p> <em> <strong>9.3.2024 klo 16.00.</strong> </em> </p><p> <strong>Tervetuloa!</strong> </p><p> <strong>Esitys suomeksi ja venäjäksi</strong> </p><p> <strong>--------------------------------------------</strong> </p><p> <strong>Концерт <em>\" Песни о любви\"</em></strong> </p><p> <b> музыкальный коллектив </b> </p><p> <strong>Шайка Балалайка </strong> </p><p> <strong>выступит на сцене библиотеки Селло </strong> </p><p> <em> <strong>9.3.2024 в 16.00</strong> </em> </p><p> <strong>Добро пожаловать</strong> </p><p> <strong>Исполнение на финском и русском языках</strong> </p>",
                "ru": "<p> <strong>Концерт </strong> <strong> <em>\" Песни о любви\"</em> </strong> </p><p> <b> музыкальный коллектив </b> </p><p> <strong>Шайка Балалайка </strong> </p><p> <strong>выступит на сцене библиотеки Селло </strong> </p><p> <em> <strong>9.3.2024 в 16.00</strong> </em> </p><p> <strong>Добро пожаловать</strong> </p><p> <strong>Исполнение на финском и русском языках</strong> </p><p> <strong>----------------------------------------------------------------</strong> </p><p> <strong>Konsertti </strong> <strong> <em>\"Lauluja rakkaudesta\" </em> </strong> </p><p> <strong>Shaika Balalaika </strong> </p><p> <strong>esiintyy Sello-kirjaston lavalla </strong> </p><p> <em> <strong>9.3.2024 klo 16.00.</strong> </em> </p><p> <strong>Tervetuloa!</strong> </p><p> <strong>Esitys suomeksi ja venäjäksi</strong> </p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Konsertti \"Lauluja rakkaudesta\" Shaika Balalaika",
                "ru": "Концерт \" Песни о любви\" Шайка Балалайка"
            },
            "short_description": {
                "fi": "Konsertti \"Lauluja rakkaudesta\"\nShaika Balalaika\nesiintyy Sello-kirjaston lavalla\n9.3.2024 klo 16.00.\nTervetuloa!\nEsitys suomeksi ja venäjäksi",
                "ru": "Концерт \" Песни о любви\" музыкального коллектива Шайка Балалайка Руководитель и солистка коллектива Хели Йорманайнен\nКонцерт посвящён началу весны!"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:282284/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282444",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8223/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10655/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10844/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11383/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11779/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11781/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11835/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11876/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 106450,
                    "license": "cc_by",
                    "created_time": "2024-03-05T14:31:08.796879Z",
                    "last_modified_time": "2024-03-05T14:31:08.796907Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{4CEFA4FF-48E0-4493-AAAA-772FA31C06E2}/109778",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106450/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-03-05T14:31:08.769223Z",
            "last_modified_time": "2024-03-05T14:31:08.908150Z",
            "date_published": "2024-02-29T16:07:00Z",
            "start_time": "2024-03-06T16:00:00Z",
            "end_time": "2024-03-06T17: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,
            "location_extra_info": {
                "fi": "Sellon kirjasto Lava",
                "ru": "Сцена библиотеки Селло"
            },
            "provider": null,
            "description": {
                "fi": "</p><p>Juhlakonsertti \"LAHJA ÄIDILLE\"</p><p>Musiikkiteatterin lastenkerho Sellon kirjastossa</p><p> <strong>6.3.2024 klo.18.00</strong> Sellon kirjaston lavalla</p><p>Tervetuloa!</p><p>____________________________________________________</p><p>Детский музыкальный театральный кружок библиотеки Селло </p><p>руководитель Вера Круглик</p><p>Представляет праздничный концерт \"ПОДАРОК МАМЕ\"</p><p>Концерт состится <strong>6.3.2024 в 18.00 </strong>на сцене библиотеки Селло</p><p>Добро пожаловать!</p>",
                "ru": "<p>Детский музыкальный театральный кружок библиотеки Селло </p><p>руководитель Вера Круглик</p><p>Представляет праздничный концерт \"ПОДАРОК МАМЕ\"</p><p>Концерт состится <strong>6.3.2024 в 18.00 </strong>на сцене библиотеки Селло</p><p>Добро пожаловать!</p><p>Juhlakonsertti \"LAHJA ÄIDILLE\"</p><p>Musiikkiteatterin lastenkerho Sellon kirjastossa</p><p> <strong>6.3.2024 klo.18.00</strong> Sellon kirjaston lavalla</p><p>Tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Musiikkiteatterin lastenkerho Sellon kirjastossa",
                "ru": "Детский музыкальный концерт. Библиотека Селло"
            },
            "short_description": {
                "fi": "Juhlakonsertti \"LAHJA ÄIDILLE\" Musiikkiteatterin lastenkerho Sellon kirjastossa",
                "ru": "Праздничный Концерт \"ПОДАРОК МАМЕ\" на сцене библиотеки Селло 6.3.2024 в 18.00"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:282444/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:282387",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11286/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u48040050",
            "sub_events": [],
            "images": [
                {
                    "id": 106213,
                    "license": "cc_by",
                    "created_time": "2024-02-28T19:31:09.735516Z",
                    "last_modified_time": "2024-02-28T19:31:09.735542Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9E1C2F7D-AD4B-42B5-AF0D-AFC87A3D19D4}/109881",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u48040050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/106213/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2024-02-28T19:31:09.696859Z",
            "last_modified_time": "2024-02-28T19:31:09.813396Z",
            "date_published": "2024-02-27T22:00:00Z",
            "start_time": "2024-03-01T14:30:00Z",
            "end_time": "2024-03-01T15: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,
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa luentoon \"Fiktio ja elämä Jevgeni Švartsin näytelmissä\" Itäkeskuksen kirjastoon pe 1.3. klo 16.30 (Kanerva-kokoushuone, 1 krs.). Luennoitsija on Helsingin yliopiston dosentti Marina Vituhnovskaja- Kauppala.</p><p>Luento on tarkoitettu yläasteikäisille, mutta kaikki venäläisestä kirjallisuudesta kiinnostuneet ovat tervetulleita. </p><p>Tapahtuma on venäjän kielellä.</p><p>Vapaa pääsy.</p>",
                "ru": "<p>Добро пожаловать на лекцию по литературе \"Для того, чтобы придумывать, надо знать. Литературная сказка и жизнь в пьесах Евгения Шварца\". Лекция будет в библиотеке Итякескус в пятницу <strong>1 марта в 16.30</strong> (Kanerva-kokoushuone, 1 этаж).</p><p>Читает лекцию доцент университета Хельсинки Марина Витухновская-Кауппала. </p><p>Лекция ориентирована на учеников старших классов, но открыта для всех интересующихся русской литературой.</p><p>Вход свободный.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Venäjänkielinen luento: Fiktio ja elämä Jevgeni Švartsin näytelmissä.",
                "ru": "Лекция: Для того, чтобы придумывать, надо знать. Литературная сказка и жизнь в пьесах Евгения Шварца"
            },
            "short_description": {
                "fi": "Kaikki venäläisestä kirjallisuudesta kiinnostuneet ovat tervetulleita.",
                "ru": "Добро пожаловать на лекцию о творчестве Евгения Шварца."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:282387/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agg6jrvtae",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvjti/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvmdy/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvnr4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvo4y/?format=api"
                }
            ],
            "images": [
                {
                    "id": 105962,
                    "license": "cc_by",
                    "created_time": "2024-02-26T09:32:40.890986Z",
                    "last_modified_time": "2024-02-26T09:37:20.736399Z",
                    "name": "ukrainan valmennukset.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/ukrainan_valmennukset.png",
                    "cropping": "148,0,740,591",
                    "photographer_name": "Spinghouse",
                    "alt_text": "Nainen ja mies katsovat ipadia.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021200130",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-26T09:37:23.726785Z",
            "last_modified_time": "2024-02-27T11:36:49.178454Z",
            "date_published": null,
            "start_time": "2024-03-01T08:00:00Z",
            "end_time": "2024-06-07T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "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": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Для клієнтів служб зайнятості організовуються групові тренінги українською мовою. Ласкаво запрошуємо дізнатися про пошук роботи та правила трудового життя! Групи проводяться переважно українською мовою.</p><p><strong>ПОШУК РОБОТИ У ФІНЛЯНДІЇ</strong></p><ul><li>п’ятниця 1.3.2024 &nbsp;10.00–12.00</li><li>п’ятниця 5.4.2024 &nbsp;10.00–12.00</li><li>п’ятниця 3.5.2024 &nbsp;10.00–12.00</li><li>п’ятниця 7.6.2024 &nbsp;10.00–12.00</li></ul><p>Під час тренінгу ви ознайомитесь з процесом пошуку роботи у Фінляндії. Ви дізнаєтесь, якими способами можливо отримати роботу, які є етапи пошуку роботи та як ваша активність може вплинути на успішність в пошуку роботи. Ви також зрозумієте, чому важливо написати резюме та супровідний лист і підготуватися до співбесіди.</p><p><strong>MАЙБУТНІМ ПРАЦІВНИКАМ</strong></p><ul><li>п’ятниця 1.3.2024 13.00–15.00</li><li>п’ятниця 5.4.2024 13.00–15.00</li><li>п’ятниця 3.5.2024 13.00–15.00</li><li>п’ятниця 7.6.2024 13.00–15.00</li></ul><p>Тренінг містить важливу інформацію про права та обовязки працівника у трудовому житті. Серед іншого, ми розповімо вам про різні форми зайнятості, колективні договори, профспілки та фонди допомоги по безробіттю, а також можливі субсидії та пільги та пов’язані з ними умови.</p><p><strong>РЕЄСТРАЦІЯ</strong></p><p>Зареєструватися потрібно за електронною адресою <strong>uusimaa.ukraina@springhouse.fi</strong><br>В електронному повідомленні вкажіть своє ім’я та прізвище, номер телефону, а також в &nbsp; якому тренінгу ви хочете взяти участь та дату даного курсу. У відповідь Ви отримаєте &nbsp;запрошення та більш детальну інформацію про участь у тренінгу.</p><p><strong>Дізнайтеся більше у консультанта з пошуку роботи:&nbsp;</strong><br>Оксана Мельник (УКР/РОС) 044 420 4243, Oксана Айкас (УКР/РОС) 044 420 4430</p><p><br>Зверніть увагу, що ведучі тренінгу не є працівниками Центру зайнятості (TE-toimisto) або Міських служб зайнятості (työllisyyspalvelut).</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "ЛАСКАВО ЗАПРОШУЄМО НА ТРЕНІНГИ УКРАЇНСЬКОЮ МОВОЮ!"
            },
            "short_description": {
                "fi": "Työllisyyspalveluiden asiakkaille järjestetään ukrainankieliset ryhmävalmennukset. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvtae/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agg6jrvo4y",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvtae/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 105962,
                    "license": "cc_by",
                    "created_time": "2024-02-26T09:32:40.890986Z",
                    "last_modified_time": "2024-02-26T09:37:20.736399Z",
                    "name": "ukrainan valmennukset.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/ukrainan_valmennukset.png",
                    "cropping": "148,0,740,591",
                    "photographer_name": "Spinghouse",
                    "alt_text": "Nainen ja mies katsovat ipadia.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021200130",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-26T09:37:22.671095Z",
            "last_modified_time": "2024-02-27T11:36:47.840247Z",
            "date_published": null,
            "start_time": "2024-06-07T07:00:00Z",
            "end_time": "2024-06-07T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Для клієнтів служб зайнятості організовуються групові тренінги українською мовою. Ласкаво запрошуємо дізнатися про пошук роботи та правила трудового життя! Групи проводяться переважно українською мовою.</p><p><strong>ПОШУК РОБОТИ У ФІНЛЯНДІЇ</strong></p><ul><li>п’ятниця 1.3.2024 &nbsp;10.00–12.00</li><li>п’ятниця 5.4.2024 &nbsp;10.00–12.00</li><li>п’ятниця 3.5.2024 &nbsp;10.00–12.00</li><li>п’ятниця 7.6.2024 &nbsp;10.00–12.00</li></ul><p>Під час тренінгу ви ознайомитесь з процесом пошуку роботи у Фінляндії. Ви дізнаєтесь, якими способами можливо отримати роботу, які є етапи пошуку роботи та як ваша активність може вплинути на успішність в пошуку роботи. Ви також зрозумієте, чому важливо написати резюме та супровідний лист і підготуватися до співбесіди.</p><p><strong>MАЙБУТНІМ ПРАЦІВНИКАМ</strong></p><ul><li>п’ятниця 1.3.2024 13.00–15.00</li><li>п’ятниця 5.4.2024 13.00–15.00</li><li>п’ятниця 3.5.2024 13.00–15.00</li><li>п’ятниця 7.6.2024 13.00–15.00</li></ul><p>Тренінг містить важливу інформацію про права та обовязки працівника у трудовому житті. Серед іншого, ми розповімо вам про різні форми зайнятості, колективні договори, профспілки та фонди допомоги по безробіттю, а також можливі субсидії та пільги та пов’язані з ними умови.</p><p><strong>РЕЄСТРАЦІЯ</strong></p><p>Зареєструватися потрібно за електронною адресою <strong>uusimaa.ukraina@springhouse.fi</strong><br>В електронному повідомленні вкажіть своє ім’я та прізвище, номер телефону, а також в &nbsp; якому тренінгу ви хочете взяти участь та дату даного курсу. У відповідь Ви отримаєте &nbsp;запрошення та більш детальну інформацію про участь у тренінгу.</p><p><strong>Дізнайтеся більше у консультанта з пошуку роботи:&nbsp;</strong><br>Оксана Мельник (УКР/РОС) 044 420 4243, Oксана Айкас (УКР/РОС) 044 420 4430</p><p><br>Зверніть увагу, що ведучі тренінгу не є працівниками Центру зайнятості (TE-toimisto) або Міських служб зайнятості (työllisyyspalvelut).</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "ЛАСКАВО ЗАПРОШУЄМО НА ТРЕНІНГИ УКРАЇНСЬКОЮ МОВОЮ!"
            },
            "short_description": {
                "fi": "Työllisyyspalveluiden asiakkaille järjestetään ukrainankieliset ryhmävalmennukset. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvo4y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agg6jrvnr4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvtae/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u021200130",
            "sub_events": [],
            "images": [
                {
                    "id": 105962,
                    "license": "cc_by",
                    "created_time": "2024-02-26T09:32:40.890986Z",
                    "last_modified_time": "2024-02-26T09:37:20.736399Z",
                    "name": "ukrainan valmennukset.png",
                    "url": "http://api.hel.fi/linkedevents/media/images/ukrainan_valmennukset.png",
                    "cropping": "148,0,740,591",
                    "photographer_name": "Spinghouse",
                    "alt_text": "Nainen ja mies katsovat ipadia.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u021200130",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/105962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2024-02-26T09:37:22.328730Z",
            "last_modified_time": "2024-02-27T11:36:47.466043Z",
            "date_published": null,
            "start_time": "2024-05-03T07:00:00Z",
            "end_time": "2024-05-03T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": "",
            "environment": "in",
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": ""
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Для клієнтів служб зайнятості організовуються групові тренінги українською мовою. Ласкаво запрошуємо дізнатися про пошук роботи та правила трудового життя! Групи проводяться переважно українською мовою.</p><p><strong>ПОШУК РОБОТИ У ФІНЛЯНДІЇ</strong></p><ul><li>п’ятниця 1.3.2024 &nbsp;10.00–12.00</li><li>п’ятниця 5.4.2024 &nbsp;10.00–12.00</li><li>п’ятниця 3.5.2024 &nbsp;10.00–12.00</li><li>п’ятниця 7.6.2024 &nbsp;10.00–12.00</li></ul><p>Під час тренінгу ви ознайомитесь з процесом пошуку роботи у Фінляндії. Ви дізнаєтесь, якими способами можливо отримати роботу, які є етапи пошуку роботи та як ваша активність може вплинути на успішність в пошуку роботи. Ви також зрозумієте, чому важливо написати резюме та супровідний лист і підготуватися до співбесіди.</p><p><strong>MАЙБУТНІМ ПРАЦІВНИКАМ</strong></p><ul><li>п’ятниця 1.3.2024 13.00–15.00</li><li>п’ятниця 5.4.2024 13.00–15.00</li><li>п’ятниця 3.5.2024 13.00–15.00</li><li>п’ятниця 7.6.2024 13.00–15.00</li></ul><p>Тренінг містить важливу інформацію про права та обовязки працівника у трудовому житті. Серед іншого, ми розповімо вам про різні форми зайнятості, колективні договори, профспілки та фонди допомоги по безробіттю, а також можливі субсидії та пільги та пов’язані з ними умови.</p><p><strong>РЕЄСТРАЦІЯ</strong></p><p>Зареєструватися потрібно за електронною адресою <strong>uusimaa.ukraina@springhouse.fi</strong><br>В електронному повідомленні вкажіть своє ім’я та прізвище, номер телефону, а також в &nbsp; якому тренінгу ви хочете взяти участь та дату даного курсу. У відповідь Ви отримаєте &nbsp;запрошення та більш детальну інформацію про участь у тренінгу.</p><p><strong>Дізнайтеся більше у консультанта з пошуку роботи:&nbsp;</strong><br>Оксана Мельник (УКР/РОС) 044 420 4243, Oксана Айкас (УКР/РОС) 044 420 4430</p><p><br>Зверніть увагу, що ведучі тренінгу не є працівниками Центру зайнятості (TE-toimisto) або Міських служб зайнятості (työllisyyspalvelut).</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "ЛАСКАВО ЗАПРОШУЄМО НА ТРЕНІНГИ УКРАЇНСЬКОЮ МОВОЮ!"
            },
            "short_description": {
                "fi": "Työllisyyspalveluiden asiakkaille järjestetään ukrainankieliset ryhmävalmennukset. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agg6jrvnr4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}