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

{
    "meta": {
        "count": 4957,
        "next": null,
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&language=ru&page=247"
    },
    "data": [
        {
            "id": "helmet:165993",
            "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:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 39896,
                    "license": "cc_by",
                    "created_time": "2017-11-02T19:13:19.262663Z",
                    "last_modified_time": "2018-11-13T15:25:55.049656Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{4F637B75-3993-4822-B22F-0795DA40DBB4}/54038",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/39896/?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:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "created_time": "2018-06-12T11:27:27.809438Z",
            "last_modified_time": "2018-06-12T11:27:27.809466Z",
            "date_published": "2018-06-12T05:00:00Z",
            "start_time": "2018-06-29T09:00:00Z",
            "end_time": "2018-06-29T14: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,
            "short_description": {
                "fi": "Tervetuloa pelaamaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Oletko kokeillut Minecraftia? Haluatko pelata ilmaisia nettipelejä tai kaverin kanssa pleikalla tai wiillä?Tykkäätkö lautapeleistä?</p><p>Tervetuloa Lastenmaahan pelaamaan, tarvittaessa autamme pääsemään alkuun. Päivän pelivuorot varataan henkilökunnalta paikan päältä. Myös vanhemmat ovat tervetulleita pelaamaan!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lastenmaan iltapäiväpelit"
            },
            "location_extra_info": {
                "fi": "Sellon kirjasto, Lastenmaa"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:165993/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:165992",
            "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:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 39896,
                    "license": "cc_by",
                    "created_time": "2017-11-02T19:13:19.262663Z",
                    "last_modified_time": "2018-11-13T15:25:55.049656Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{4F637B75-3993-4822-B22F-0795DA40DBB4}/54038",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/39896/?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:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "created_time": "2018-06-12T11:27:26.417774Z",
            "last_modified_time": "2018-06-12T11:27:26.417804Z",
            "date_published": "2018-06-12T05:00:00Z",
            "start_time": "2018-06-15T09:00:00Z",
            "end_time": "2018-06-15T14: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,
            "short_description": {
                "fi": "Tervetuloa pelaamaan!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Oletko kokeillut Minecraftia? Haluatko pelata ilmaisia nettipelejä tai kaverin kanssa pleikalla tai wiillä?Tykkäätkö lautapeleistä?</p><p>Tervetuloa Lastenmaahan pelaamaan, tarvittaessa autamme pääsemään alkuun. Päivän pelivuorot varataan henkilökunnalta paikan päältä. Myös vanhemmat ovat tervetulleita pelaamaan!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Lastenmaan iltapäiväpelit"
            },
            "location_extra_info": {
                "fi": "Sellon kirjasto, Lastenmaa"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:165992/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:163745",
            "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:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10778/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 44147,
                    "license": "cc_by",
                    "created_time": "2018-05-07T16:19:27.985892Z",
                    "last_modified_time": "2018-05-07T16:19:27.985914Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{FA45EEC3-E6AD-4BA7-BE59-B4DB0AB5B4E1}/65132",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:45400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/44147/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:46.779972Z",
            "date_published": "2018-05-07T15:17:00Z",
            "start_time": "2018-05-25T06:00:00Z",
            "end_time": "2018-06-01T12: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Venäjänkielinen Samuil Maršakin lastenrunoon perustuva vuorovaikutteinen näyttely ."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Venäjänkielinen Samuil Maršakin lastenrunoon perustuva vuorovaikutteinen näyttely <strong>Itäkeskuksen kirjastossa 25.5 - 1.6, kokoushuone 1.</strong></p><p>Siirreltävä, lapsille suunniteltu näyttely perustuu Hajamielen, hassun outolinnun, seikkailuihin. Näyttelyvieraat astuvat sankarin maailmaan: sekaisesta yhteisasunnosta kummalliseen raitiovaunuun, raitiovaunusta asemalle…</p><p>Näyttely koostuu liikuteltavista moduuleista, joista jokainen on temaattinen, runon osaan perustuva leikkinurkka. Yksittäisille kävijöille on saatavilla leikkiohje.</p><p>Näyttely tukee ja kehittää kaksikielisen lapsen venäjän kielen taitoa. Vanhemmille ja opettajille se antaa uusia ajatuksia leikin avulla tapahtuvaan opetukseen.</p><p>Tervetuloa!</p><p>Vapaa pääsy.</p>",
                "ru": "<p>Итерактивная выставка по стихотворению С. Я. Маршака<br><strong>«Вот какой рассеянный!» 25.5 - 1.6.</strong></p><p>Передвижная игровая выставка посвящена приключениям ЧЕЛОВЕКА РАССЕЯННОГО, обаятельного чудака, придуманного популярным советским детским поэтом Самуилом Яковлевичем Маршаком.</p><p> <strong>Приглашаем ребят и их родителей на необычную выставку в библиотеку Итякескус!</strong> </p><p>Выставка подготовлена петербуржским музеем Ф.М. Достоевского.</p><p>Вход свободный.</p>"
            },
            "provider": null,
            "name": {
                "fi": "Vuorovaikutteinen näyttely \"Voi, mikä Hajamieli!\""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:163745/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:163169",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18703/?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:11194/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 42201,
                    "license": "cc_by",
                    "created_time": "2018-01-31T19:11:43.623849Z",
                    "last_modified_time": "2018-11-13T15:26:00.993328Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{0232B1CC-F466-4C1A-9504-A07979C3292D}/62774",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:42.848192Z",
            "date_published": "2018-04-10T21:00:00Z",
            "start_time": "2018-05-25T11:00:00Z",
            "end_time": "2018-05-25T13: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,
            "short_description": {
                "fi": "Opastajat auttavat tietoteknisissä asioissa venäjän kielellä."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa venäjänkieliseen digi-opastukseen <strong>Tikkurilan kirjastoon perjantaisin klo 14.00-16.00</strong>. Opastajat auttavat ATK- kysymyksissä ja sähköisessä asioinnissa.</p><p> <strong>Ilmoittautuminen: </strong> </p><p> <strong>svk.digi(at)gmail.com tai 044 7745092 ma-pe klo 10-15</strong> </p><p>Opastukset ovat osa DIGI-tuki arkeen-projektia, jonka toteuttavat Helmet-kirjastot ja Suomen Venäjänkielisten Keskusjärjestö yhdessä, projektia tukee STEA.</p><p> <a href=\"http://www.svkeskus.fi/fi/\">Suomen Venäjänkielisten Keskusjärjestö ry</a> </p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Tikkurilan_kirjasto/Yhteystiedot\">Tikkurilan kirjasto: Lummetie 4</a> </p>",
                "ru": "<p> <strong>Темы занятий в библиотеке Тиккурила:</strong> </p><p> <strong>27.4. </strong>Основы работы на компьютере. Клавиатура. Диски, папки, файлы.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> <strong>4.5. </strong>Основы работы в текстовом редакторе. Организация папок и файлов.<br> <em>Aleksis-sali, musiikki- ja mediaosasto</em></p><p> <strong>11.5</strong>. Электронная почта. Создание эл. адреса, отпрака/ получение сообщений,<br> прикрепление файла, организация папок и файлов.<br> <em>Aleksis-sali, musiikki- ja mediaosasto</em></p><p> <strong>18.5. </strong>Интернет и работа в браузере Google chrome. Поиск в интернете.<br> Организация и сохранение избранных страниц. Просмотр видео в интернете.<br> Основные правила безопасной работы в сети.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> <strong>25.5. </strong>Перенос файлов, фотографий, видео с мобильного телефона/ планшета<br> на компьютер. Организация папок и файлов.<br> На занятии необходимо иметь с собой мобильный телефон/ планшет<br> и USB провод для подключения к компьютеру.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Digi-opastus venäjäksi"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:163169/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:163171",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18703/?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:11194/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 42201,
                    "license": "cc_by",
                    "created_time": "2018-01-31T19:11:43.623849Z",
                    "last_modified_time": "2018-11-13T15:26:00.993328Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{0232B1CC-F466-4C1A-9504-A07979C3292D}/62774",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:38.608522Z",
            "date_published": "2018-04-10T21:00:00Z",
            "start_time": "2018-05-18T11:00:00Z",
            "end_time": "2018-05-18T13: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,
            "short_description": {
                "fi": "Opastajat auttavat tietoteknisissä asioissa venäjän kielellä."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa venäjänkieliseen digi-opastukseen <strong>Tikkurilan kirjastoon perjantaisin klo 14.00-16.00</strong>. Opastajat auttavat ATK- kysymyksissä ja sähköisessä asioinnissa.</p><p> <strong>Ilmoittautuminen: </strong> </p><p> <strong>svk.digi(at)gmail.com tai 044 7745092 ma-pe klo 10-15</strong> </p><p>Opastukset ovat osa DIGI-tuki arkeen-projektia, jonka toteuttavat Helmet-kirjastot ja Suomen Venäjänkielisten Keskusjärjestö yhdessä, projektia tukee STEA.</p><p> <a href=\"http://www.svkeskus.fi/fi/\">Suomen Venäjänkielisten Keskusjärjestö ry</a> </p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Tikkurilan_kirjasto/Yhteystiedot\">Tikkurilan kirjasto: Lummetie 4</a> </p>",
                "ru": "<p> <strong>Темы занятий в библиотеке Тиккурила:</strong> </p><p> <strong>27.4. </strong>Основы работы на компьютере. Клавиатура. Диски, папки, файлы.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> <strong>4.5. </strong>Основы работы в текстовом редакторе. Организация папок и файлов.<br> <em>Aleksis-sali, musiikki- ja mediaosasto</em></p><p> <strong>11.5</strong>. Электронная почта. Создание эл. адреса, отпрака/ получение сообщений,<br> прикрепление файла, организация папок и файлов.<br> <em>Aleksis-sali, musiikki- ja mediaosasto</em></p><p> <strong>18.5. </strong>Интернет и работа в браузере Google chrome. Поиск в интернете.<br> Организация и сохранение избранных страниц. Просмотр видео в интернете.<br> Основные правила безопасной работы в сети.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> <strong>25.5. </strong>Перенос файлов, фотографий, видео с мобильного телефона/ планшета<br> на компьютер. Организация папок и файлов.<br> На занятии необходимо иметь с собой мобильный телефон/ планшет<br> и USB провод для подключения к компьютеру.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Digi-opastus venäjäksi"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:163171/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:162535",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15321/?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:10659/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 43019,
                    "license": "cc_by",
                    "created_time": "2018-03-20T10:10:58.925406Z",
                    "last_modified_time": "2018-11-13T15:26:03.221958Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9F8B3BB8-24CD-4226-973E-2188A18ACFF3}/64153",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43019/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:36.771939Z",
            "date_published": "2018-03-20T09:00:00Z",
            "start_time": "2018-05-16T13:30:00Z",
            "end_time": "2018-05-16T15: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,
            "short_description": {
                "fi": "Pienten lasten venäjänkielinen toiminnalinen Laduški-lorutuokio\nkeskiviikkoisin klo 16.30–18.30 Entressen kirjastossa. Добро пожаловать!"
            },
            "info_url": null,
            "description": {
                "fi": "<p> <strong>Pienten lasten venäjänkielinen toiminnalinen Laduški-lorutuokio<br> keskiviikkoisin klo 16.30–18.30<br> Entressen kirjaston Satuhuoneessa ja lastenosastolla.</strong> </p>",
                "ru": "<p>В программе детские потешки, гимнастика, пальчиковые игры, веселый массаж, песенки, а также поделки, раскраски, рисование, аппликации. В процессе занятия ребенок тренирует память, обогащает словарный запас, развивает мелкую и крупную моторику и мышление.</p><p>Вход свободный, без предварительной записи. Добро пожаловать!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Laduški - toiminnalliset lorutuokiot venäjäksi"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:162535/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:160205",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8192/?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:10737/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 42024,
                    "license": "cc_by",
                    "created_time": "2018-01-25T10:14:32.176387Z",
                    "last_modified_time": "2018-01-25T10:14:32.176420Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{12FB157F-2124-4F6D-8E5B-D07C052FB1C3}/62616",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:45400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42024/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:36.066871Z",
            "date_published": "2018-01-25T09:41:00Z",
            "start_time": "2018-05-16T07:00:00Z",
            "end_time": "2018-05-16T08: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan satuja ja loruja sekä askartelemaan."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa venäjänkieliseen lasten <strong>Laduški</strong>-kerhoon Malmin kirjastoon keskiviikkoisin klo 10-11.30.</p><p>Kerhon vetäjä: Ksenia Kukkonen.</p><p>Vapaa pääsy.</p>",
                "ru": "<p>Кружок на русском языке \"<strong>Ладушки</strong>\" есть теперь и в Хельсинки, в <strong>библиотеке Малми каждую среду с 10.00 до 11.30 </strong>в детском отделе. Кружок для деток от 9 мес до 5 лет.</p><p>В программе детские потешки, гимнастика, пальчиковые игры, веселый массаж, песенки, а также поделки, раскраски, рисование, аппликации.</p><p>В процессе занятия ребенок тренирует память, обогащает словарный запас, развивает мелкую и крупную моторику, мышление.</p><p>Занятия ведёт <strong>Ксения Кукконен.</strong></p><p>Вход свободный. Предварительная запись не требуется.</p><p>Добро пожаловать!</p>"
            },
            "provider": null,
            "name": {
                "fi": "Laduški - venäjänkielinen lasten kerho"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:160205/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:163210",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8141/?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:11689/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 43427,
                    "license": "cc_by",
                    "created_time": "2018-04-13T08:11:03.648045Z",
                    "last_modified_time": "2018-04-13T08:11:03.648067Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{41910533-76B4-4DD8-A329-DEEFC035C74E}/63477",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:45400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43427/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:35.352770Z",
            "date_published": "2018-04-12T21:00:00Z",
            "start_time": "2018-05-15T14:00:00Z",
            "end_time": "2018-05-15T15: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Helmikoru korostaa omaa persoonaasi."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa venäjänkieliseen <strong>helmityöpajaan 15.5. klo 17-18.30 Kannelmäen kirjastoon</strong>, monitoimitila. Opastukset voi saada myös suomeksi.</p><p>Vapaa pääsy.</p>",
                "ru": "<p>Добро пожаловать в <strong>библиотеку Каннельмяки на мастер-класс по плетению фенечек их бисера 15.5 с 17.00 до 18.30</strong>, monitoimitila.</p><p>Фенечки — это плетённые вручную браслеты из мулине, бисера, кожи, лент и другой фурнитуры. В технике бисероплетения фенечки смотрятся очень стильно. Такой браслет может стать оригинальным аксессуаром, подчеркивающим индивидуальный стиль своего владельца.</p><p>Ведет мастер-класс <strong>Ирина Мокичева, координатор проекта \"Чайка\".</strong></p><p>Мастер-класс на русском языке.</p><p>Вход свободный.</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Kannelmaen_kirjasto/Yhteystiedot\">Библиотека Каннельмяки: Klaneettitie 5</a> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Helmityöpaja"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:163210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:163204",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8215/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?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:11756/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?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": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 43415,
                    "license": "cc_by",
                    "created_time": "2018-04-12T14:11:13.233731Z",
                    "last_modified_time": "2018-11-13T15:26:14.772421Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{94AAAA77-A073-4389-A4D8-6BA4DDFB9F26}/64625",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43415/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:34.594432Z",
            "date_published": "2018-04-11T21:00:00Z",
            "start_time": "2018-05-14T15:00:00Z",
            "end_time": "2018-05-14T16: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa kaikki nykykirjallisuudesta kiinnostuneet!"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa <strong>venäjänkieliseen nuorten aikuisten lukupiiriin </strong>Kallion kirjastoon (Dekkarikirjasto).<br> Seuraava tapaaminen <strong>14.5 klo 18.00-19.30</strong>.</p><p>Vapaa pääsy.</p><p>Vetäjä on Evita Matiyas.</p>",
                "ru": "<p>Литературный клуб для молодежи на русском языке начинает свою работу <strong>в библиотеке Каллио </strong>(Dekkarikirjasto). Приглашаем всех желающих!<br><br> Следующая встреча <strong>14.5 с 18.00 до 19.30.</strong></p><p>Обсуждаем роман Дмитрия Быкова \"Июнь\".</p><p>Ведет встречи <strong>Эвита Матияс</strong>.</p><p>Вход свободный.</p><p> <a href=\"https://vk.com/samovarfm\">Группа литературного клуба ВКонтакте</a> </p><p> <a href=\"http://www.helmet.fi/ru-RU/Rekomenduem/Polezno_znat/Kak_iskat_v_elektronnom_kataloge_Helmet(98130)\">Как искать русскоязычные материалы в электронном каталоге библиотек Хелмет</a> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Venäjänkielinen lukupiiri nuorille aikuisille"
            },
            "location_extra_info": {
                "fi": "Dekkarikirjasto"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:163204/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:163191",
            "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:11689/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 43408,
                    "license": "cc_by",
                    "created_time": "2018-04-12T11:11:36.866096Z",
                    "last_modified_time": "2018-04-12T11:11:36.866119Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9C56A249-C3DB-4BC6-A4E9-6853427B9652}/64183",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:45400",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43408/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:33.959655Z",
            "date_published": "2018-04-11T21:00:00Z",
            "start_time": "2018-05-12T09:00:00Z",
            "end_time": "2018-05-12T12: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Luento pidetään Hyvinvointi-projektin puitteissa."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa <strong>venäjänkieliselle luennolle \"Narsistinen persoonallisuustyyppi\" Itäkeskuksen kirjastoon 12.5 klo 12-15,</strong> kokoushuone 1.</p><p> <em>Lehtori: Elizaveta Tilli, Montessori-pedagogi, sosionomi</em> </p><p> <em>Vapaa pääsy.</em> </p><p> <em>Kuva: Natalia Sergeeva, kuvittaja</em> </p>",
                "ru": "<p>В рамках проекта <a href=\"http://www.helmet.fi/ru-RU/Rekomenduem/Polezno_znat/Russkoiazychnye_eksperty_v_bibliotekakh(153679)\">«Благополучие»</a> продолжаем цикл лекций и мастер-классов в <strong>библиотеках Хелмет</strong>. В этом году вас ждут новые интересные встречи с психологами, социономами, специалистами, работающими в финских организациях.</p><p>Приглашаeм на лекцию<strong> «Нарциссическое расстройство личности» </strong>в библиотеку<strong> Итякескус 12.5 с 12.00 до 15.00, </strong>kokoushuone 1.</p><p>Нарциссическое расстройство личности: что это такое, как его распознать? Kак быть, если у вас коллега, начальник или родственник с нарциссическими симптомами? На лекции будут рассмотрены нарциссические проявления у детей: нормальные, соответствующие фазе развития ребенка и укоренившиеся, которые не коррелируют с фазой развития.</p><p> <em>Лектор: <strong>Елизавета Тилли</strong>, соционом, Монтессори-педагог.</em> </p><p>Лекция на русском языке.</p><p>Добро пожаловать!</p><p>Вход свободный.</p><p> <em>Фото: Наталья Сергеева, графический дизайнер</em> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Venäjänkielinen luento: Narsistinen persoonallisuustyyppi"
            },
            "location_extra_info": {
                "fi": "Kokoushuone 1"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:163191/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:154163",
            "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:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?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:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 36864,
                    "license": "cc_by",
                    "created_time": "2017-06-09T14:12:57.336851Z",
                    "last_modified_time": "2018-11-13T15:26:08.479557Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{7922AFE8-F925-4E1F-8227-F0C9F3DF9A30}/52710",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/36864/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:33.834654Z",
            "date_published": "2017-12-07T07:04:18.157000Z",
            "start_time": "2018-05-12T07:00:00Z",
            "end_time": "2018-05-12T08: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,
            "short_description": {
                "ru": "\"Ладушки\" в библиотеке \"Селло\" продолжаются и в новом сезоне! Занятия будут проходить каждую субботу с 14 января по 27 мая. Начало в 10:10."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Laduški - toiminnalliset lorutuokiot venäjäksi</p> <p>Lauantaisin klo 10-11 - 9 kk - 3 v. 5 kk -ikäisille lapsille<br> Sunnuntaisin klo 11-12 - 3 v. 6 kk - 5 v. -ikäisille lapsille</p> <p>Lorutuokioiden vetäjä: <strong>Ksenia Kukkonen</strong></p> ",
                "ru": "<p>Кружок \"<strong>Ладушки</strong>\" для деток от 9 мес до 5 лет. </p> <p>1-я группа - дети от 9 месяцев до 2 лет - по субботам в 10.10. <br> 2-я группа - дети от 2,1 лет до 3,5 лет - по субботам в 10.45. <br> 3-я группа - дети от 3,6 до 5 лет - по воскресеньям в 11.00.</p> <p>В программе детские потешки, гимнастика, пальчиковые игры, веселый массаж, песенки, а также поделки, раскраски, рисование, аппликации. В процессе занятия ребенок тренирует память, обогащает словарный запас, развивает мелкую и крупную моторику и мышление.</p> <p>Занятия ведёт <strong>Ксения Кукконен</strong></p> <p>В Детском мире - детском отделе библиотеки Селло, первый этаж.<br> Вход свободный, без предварительной записи. Добро пожаловать!</p> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Laduški - toiminnalliset lorutuokiot venäjäksi"
            },
            "location_extra_info": {
                "ru": "Библиотека Селло, Детский отдел"
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:154163/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:163170",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18703/?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:11194/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 42201,
                    "license": "cc_by",
                    "created_time": "2018-01-31T19:11:43.623849Z",
                    "last_modified_time": "2018-11-13T15:26:00.993328Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{0232B1CC-F466-4C1A-9504-A07979C3292D}/62774",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/42201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:30:33.737506Z",
            "date_published": "2018-04-10T21:00:00Z",
            "start_time": "2018-05-11T11:00:00Z",
            "end_time": "2018-05-11T13: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,
            "short_description": {
                "fi": "Opastajat auttavat tietoteknisissä asioissa venäjän kielellä."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa venäjänkieliseen digi-opastukseen <strong>Tikkurilan kirjastoon perjantaisin klo 14.00-16.00</strong>. Opastajat auttavat ATK- kysymyksissä ja sähköisessä asioinnissa.</p><p> <strong>Ilmoittautuminen: </strong> </p><p> <strong>svk.digi(at)gmail.com tai 044 7745092 ma-pe klo 10-15</strong> </p><p>Opastukset ovat osa DIGI-tuki arkeen-projektia, jonka toteuttavat Helmet-kirjastot ja Suomen Venäjänkielisten Keskusjärjestö yhdessä, projektia tukee STEA.</p><p> <a href=\"http://www.svkeskus.fi/fi/\">Suomen Venäjänkielisten Keskusjärjestö ry</a> </p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Tikkurilan_kirjasto/Yhteystiedot\">Tikkurilan kirjasto: Lummetie 4</a> </p>",
                "ru": "<p> <strong>Темы занятий в библиотеке Тиккурила:</strong> </p><p> <strong>27.4. </strong>Основы работы на компьютере. Клавиатура. Диски, папки, файлы.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> <strong>4.5. </strong>Основы работы в текстовом редакторе. Организация папок и файлов.<br> <em>Aleksis-sali, musiikki- ja mediaosasto</em></p><p> <strong>11.5</strong>. Электронная почта. Создание эл. адреса, отпрака/ получение сообщений,<br> прикрепление файла, организация папок и файлов.<br> <em>Aleksis-sali, musiikki- ja mediaosasto</em></p><p> <strong>18.5. </strong>Интернет и работа в браузере Google chrome. Поиск в интернете.<br> Организация и сохранение избранных страниц. Просмотр видео в интернете.<br> Основные правила безопасной работы в сети.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> <strong>25.5. </strong>Перенос файлов, фотографий, видео с мобильного телефона/ планшета<br> на компьютер. Организация папок и файлов.<br> На занятии необходимо иметь с собой мобильный телефон/ планшет<br> и USB провод для подключения к компьютеру.<br> <em>Kokoushuone Voimala, aikuisten osasto</em></p><p> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Digi-opastus venäjäksi"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:163170/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:43385",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.lippu.fi/Lippuja.html?doc=artistPages/tickets&fun=artist&action=tickets&language=fi&erid=2134489"
                    },
                    "description": null,
                    "price": {
                        "fi": "10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 41819,
                    "license": "event_only",
                    "created_time": "2018-01-16T15:10:34.593737Z",
                    "last_modified_time": "2018-01-16T15:10:34.593771Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_614728.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:46101",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41819/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2018-06-11T10:25:56.324848Z",
            "date_published": null,
            "start_time": "2018-05-24T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "ru": "Весёлая фантастическая комедия о жизни и Любви по классической пьесе Андрея Арта \"3-ий отдел\" (в новой редакции)"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D061FA9B58F0D5E225D37B41EB7D6B50/Teatteristudio_u_pARTera_"
            },
            "description": {
                "fi": "<p>Ilomielinen, fantastinen komedia elämästä ja rakkaudesta, joka pohjautuu Andrei Art:n klassiseen näytelmään \"Kolmas osasto\". <br>Ei-niin-kovin-onnistuneen kokeen jälkeen kolmannen osaston työntekijöiden (Ensimmäisen ja Toisen) edessä on lähes mahdottomalta vaikuttava tehtävä: miten \"seuraavan Ikuisuuden\" loppuun mennessä ylikiristetyllä rahoituksella luodaan jotain? Toisaalta, kun asiaan puuttuvat \"Ulkopuoliset Epäjärjestykset\", kaikki on mahdollista...</p><p>Tällä näytöksella teatteristudio u pARTera juhlii teatteritoimintansa ensimmäistä vuosikymmentä. Tulkaa tekin, arvoisa katsoja!</p><p>Venäjänkielinen, ei suomenkielistä käännöstä<br>Ikäsuositus: yli 14-vuotiaille. <br>Kesto: 75 min.</p>",
                "ru": "<p>Весёлая фантастическая комедия о жизни и Любви по классической пьесе Андрея Арта \"3-ий отдел\" (в новой редакции)</p><p>После не очень удачного эксперимента, сотрудники ”Третьего Отдела” (Первый и Второй) поставлены перед, казалось бы, невыполнимой задачей — как при очень ограниченном бюджете на ”следующую Вечность” создать нечто? Но когда в события вмешиваются ”Внешние Беспределы”, произойти может всё что угодно…<br> <br>Этой постановкой театральная студия «у пАРТера» отмечает десятилетие своей творческой деятельности. Приходите и вы, дорогой Зритель!</p><p>******</p>"
            },
            "provider": null,
            "name": {
                "fi": "Teatteristudio \"u pARTera\": Третий Отдел – Fantastinen komedia \"Kolmas osasto\""
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:43385/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqsg6h244",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20757/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?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": false,
                    "info_url": {
                        "fi": "http://www.kinolokakuu.com",
                        "en": "https://kinolokakuu.com/program-and-info-in-english/"
                    },
                    "description": {
                        "fi": "peruslippu",
                        "en": "standard ticket"
                    },
                    "price": {
                        "fi": "7€/elokuva",
                        "en": "7€/film"
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 41989,
                    "license": "event_only",
                    "created_time": "2018-01-23T14:22:15.666643Z",
                    "last_modified_time": "2018-01-23T14:22:15.666669Z",
                    "name": "Venäläisen elokuvan festivaali Kino Lokakuu",
                    "url": "http://api.hel.fi/linkedevents/media/images/film-2205325_1920.jpg",
                    "cropping": "322,0,1598,1276",
                    "photographer_name": "Venäläisen elokuvan festivaali Kino Lokakuu",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41989/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2018-01-23T14:43:06.599050Z",
            "last_modified_time": "2018-01-23T14:43:06.602992Z",
            "date_published": null,
            "start_time": "2018-02-13T16:00:00Z",
            "end_time": "2018-02-18T16: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Kino Lokakuun yhdeksi teemaksi nousee suomalais-venäläinen elokuvayhteistyö. Andorran valkokankaalla nähdään nuoren, lupaavan pietarilaisohjaajan Nikolai",
                "en": "One of the themes of Kino Lokakuu Festival 2018 is cooperation between Finnish and Russian film makers. First there will be shown a movie by the young director"
            },
            "info_url": {
                "fi": "http://www.kinolokakuu.com",
                "en": "https://kinolokakuu.com/program-and-info-in-english/"
            },
            "description": {
                "fi": "<p>Kino Lokakuun yhdeksi teemaksi nousee suomalais-venäläinen elokuvayhteistyö. Andorran valkokankaalla nähdään nuoren, lupaavan pietarilaisohjaajan Nikolai Dreidenin elokuva ”Pettämisen anatomia”, jossa esiintyy mm. Anu Palevaara. </p><p>Festivaalilla esitetään myös Venäjän vuoden humaaneimmaksi elokuvaksi nimetty Arytmia, joka voitti pääpalkinnon venäläisen elokuvan festivaalilla Kinotavrissa. </p><p>Ohjelmisto sisältää draamaa, komediaa ja ajankohtaisia dokumentteja. </p><p>Elokuvat on tekstitetty englanniksi.</p>",
                "en": "<p>One of the themes of Kino Lokakuu Festival 2018 is cooperation between Finnish and Russian film makers. First there will be shown a movie by the young director Nikolai Dreiden called \"Anatomy of betrayal\" featuring a Finnish actress Anu Palevaara. </p><p>In the festival, there will be also shown the film \"Arytmia\" that was titled as the most humane Russian movie last year and it won the top prize in Russian movie festival Kinotavr. </p><p>This year's festival offers films based on classic literature, comedy and current documents. </p><p>Subtitles in English.</p>"
            },
            "provider": {
                "fi": "Venäjä-seura",
                "en": "Venäjä-seura"
            },
            "name": {
                "fi": "Venäläisen elokuvan festivaali Kino Lokakuu",
                "en": "Russian Film Festival Kino Lokakuu"
            },
            "location_extra_info": {
                "fi": "",
                "en": ""
            },
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqsg6h244/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afqgttdnt4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:43280/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2758/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/429053797551114/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [
                {
                    "id": 41160,
                    "license": "event_only",
                    "created_time": "2017-12-18T13:23:08.140974Z",
                    "last_modified_time": "2017-12-18T13:23:08.140996Z",
                    "name": "peli",
                    "url": "http://api.hel.fi/linkedevents/media/images/pelitapahtuma.jpg",
                    "cropping": "75,0,375,300",
                    "photographer_name": "",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ahjo:811000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/41160/?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": "2017-12-18T13:24:53.279999Z",
            "last_modified_time": "2018-01-04T13:53:37.505840Z",
            "date_published": null,
            "start_time": "2018-01-23T12:00:00Z",
            "end_time": "2018-01-23T14: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Pelataan porukalla monenlaisia pelejä"
            },
            "info_url": {
                "fi": "https://www.facebook.com/asukastalomyllari/"
            },
            "description": {
                "fi": "<p>Kaikille avoin pelitapahtuma jossa viihdytään erilaisten toiminnallisten pelien parissa.&lt;br&gt;Ota oma lempilautapelisi mukaan!</p><p>Kokeiltavana myös Virtuaalilasit!</p>"
            },
            "provider": {
                "fi": "Sambo 2000 ry & Asukastalo Mylläri & Myllypuron mediakirjasto"
            },
            "name": {
                "fi": "Yhteisöllinen peli-iltapäivä"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afqgttdnt4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afn4rvid5e",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:1940/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ar/?format=api"
                },
                {
                    "@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/so/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:3/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:5/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2017-05-02T11:04:15.081792Z",
            "last_modified_time": "2017-05-15T08:58:03.768241Z",
            "date_published": null,
            "start_time": "2017-05-18T07:00:00Z",
            "end_time": "2017-05-18T11: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Paljon erilaisia esityksiä, myyntipöytiä, työpajoja, kts. erillinen ohjelma."
            },
            "info_url": {
                "fi": "http://www.hel.fi/kinaporin-palvelukeskus"
            },
            "description": {
                "fi": "Tapahtuma on maksuton"
            },
            "provider": null,
            "name": {
                "fi": "Värikäs Vanhuus-messut"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afn4rvid5e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afn4rxp5fe",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:41479/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:811000",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ar/?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/so/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:3/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:5/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2017-05-02T11:14:03.177574Z",
            "last_modified_time": "2017-05-02T11:14:03.183812Z",
            "date_published": null,
            "start_time": "2017-05-18T10:00:00Z",
            "end_time": "2017-05-18T11: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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Värikäs Vanhuus- messujen juhla juhlasalissa. Juontaa Eva Rönkkö ja Evans Odhiambo. Juhlapuhujana Nasima Razmyar. kts. erillinen ohjelma."
            },
            "info_url": {
                "fi": "http://www.hel.fi/kinaporin-palvelukeskus"
            },
            "description": {
                "fi": "Tilaisuus on tarkoitettu eläkeläisille ja työttömille, joilla on palvelukeskuskortti."
            },
            "provider": null,
            "name": {
                "fi": "Värikäs Vanhuus- juhla"
            },
            "location_extra_info": null,
            "provider_contact_info": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afn4rxp5fe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}