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&page=10657&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 213469,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=10658&publisher_ancestor=ahjo%3A00001",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=10656&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "helmet:41097",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18105/?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": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 342,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.576106Z",
                    "last_modified_time": "2017-01-03T17:04:02.682249Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{A795B360-ABDF-4DB3-9BFD-31AC7C5F5DC9}/26265",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/342/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.575000Z",
            "date_published": "2014-06-25T07:09:00Z",
            "start_time": "2014-09-15T11:00:00Z",
            "end_time": "2014-09-15T12: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,
            "description": {
                "fi": "<p> <strong>Ryhmä kokoontuu maanantaisin klo 14-15 Elinassa</strong> <br> <br> Kielikahvila on keskusteluryhmä, jossa harjoitellaan suomen kielellä puhumista. Ryhmä on tarkoitettu henkilöille, jotka ovat käyneet jo kielikursseja, mutta haluavat pitää puhekielen kielitaitoaan yllä esimerkiksi tällaisessa vapaamuotoisessa keskusteluryhmässä.<br><br><strong> </strong> <strong><a href=\"https://www.facebook.com/KielikahvilaSello\">&gt;&gt; Kielikahvila facebookissa</a></strong><br><br> Ei ennakkoilmoittautumista! Kahvi / tee ja pientä purtavaa!</p><p> 1.9.2014.-22.12.2014</p><p> Tervetuloa mukaan!<br> </p>",
                "en": "<p> <strong>Mondays at 2- 3 pm in Elina</strong>\n</p><p> The Language Cafe is a discussion group, where we practice speaking Finnish. The group is intended for those who have already taken language courses and want to improve their oral skills in an informal discussion group. No registration required. Coffee / tee and snacks served! For more information please contact Leena Laitinen, email: leena.laitinen @ espoo.fi or tel. 046 8771904</p><p> Welcome!<br><br> 1.9.-22.12.2014<br><br><br><br> Kielikahvila on keskusteluryhmä, jossa harjoitellaan suomen kielellä puhumista. Ryhmä on tarkoitettu henkilöille, jotka ovat käyneet jo kielikursseja, mutta haluavat pitää puhekielen kielitaitoaan yllä esimerkiksi tällaisessa vapaamuotoisessa keskusteluryhmässä.</p><p> Ryhmä kokoontuu maanantaisin klo 14-15 Elinassa</p><p> Ei ennakkoilmoittautumista! Kahvi / tee ja pientä purtavaa!<br><br> Tervetuloa mukaan!<br><br> 1.9.-22.12.2014</p><p> <br> <strong>&gt;&gt; <a href=\"https://www.facebook.com/KielikahvilaSello\">Kielikahvila facebookissa</a></strong> <br> </p>"
            },
            "name": {
                "fi": "Kielikahvila Sello",
                "en": "Language Café Sello"
            },
            "short_description": {
                "fi": "Kielikahvila on keskusteluryhmä, jossa harjoitellaan suomen kielellä puhumista. Kokoonnumme Elinassa",
                "en": "The language cafe is a discussion group, where we practice speaking Finnish"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Elina",
                "en": "Sello Library, Elina"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:41097/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40306",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18105/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 341,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.574185Z",
                    "last_modified_time": "2017-01-03T17:04:02.679289Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{734314AE-6632-4BA0-9C7B-5F205AEB253D}/17469",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/341/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.555000Z",
            "date_published": "2014-06-06T05:00:00Z",
            "start_time": "2014-09-11T14:00:00Z",
            "end_time": "2014-09-11T15: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,
            "description": {
                "fi": "<p> <br> El grupo está dirigido a personas que les interesa el español, este grupo es de discusión informal, con temas de uso cotidiano. No se necesita ningún nivel, podemos empezar desde el inicio juntos.No es necesario registrarse.<br><br> ¡Bienvenidos a disfrutar de un tiempo divertido!<br><br><br> Ryhmä on suunnattu espanjan kielestä kiinnostuneille. Keskustelemme arkipäivän asioista.</p><p> <strong>Kokoonnumme torstaisin klo 17-18 </strong>Elinassa, 2. kerros<br><br> 14.8.-18.12.2014</p> Tervetuloa!<br><br>"
            },
            "name": {
                "fi": "¡Hablamos español! - Tule puhumaan espanjaa!"
            },
            "short_description": {
                "fi": "Keskustelemme arkipäivän asioista torstaisin klo 17-18"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Elina"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40306/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:39825",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@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": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 340,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.572252Z",
                    "last_modified_time": "2017-01-03T17:04:02.676396Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{1CBC21CA-AB85-438B-98DB-CDAE0EB90C60}/26260",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/340/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.535000Z",
            "date_published": "2013-12-17T06:00:00Z",
            "start_time": "2014-09-11T13:00:00Z",
            "end_time": "2014-09-11T16:45: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,
            "description": {
                "fi": "<p> <br> <strong>Lautapeliseuran lautapelikerho kokoontuu Akseli-salissa torstaisin klo 16-19.45. </strong> <br> <br> Lisätietoja ja poikkeusaikoja ja -paikkoja: <strong><a href=\"http://www.lautapeliseura.fi/foorumi/\">foorumi</a></strong> <br><br> Pelitietoa <strong><a href=\"http://www.lautapelaaja.net\">http://www.lautapelaaja.net</a> ja </strong><strong><a href=\"http://www.lautapeliseura.fi\">http://www.lautapeliseura.fi</a> <br><br><a href=\"https://www.facebook.com/pages/Suomen-lautapeliseura/164470176919869\">Facebookissa</a></strong></p><p> Tervetuloa!<br> </p>"
            },
            "name": {
                "fi": "Lautapelikerho"
            },
            "short_description": {
                "fi": "Lautapeliseuran lautapelikerho kokoontuu Akseli-salissa torstaisin klo 16-19.45."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Akseli-sali"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:39825/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:38686",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8348/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 339,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.570188Z",
                    "last_modified_time": "2017-01-03T17:04:02.673379Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{1FB0143E-2219-4BE4-82B4-6DE15F2A073D}/11510",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.515000Z",
            "date_published": "2014-04-30T09:32:00Z",
            "start_time": "2014-09-10T15:00:00Z",
            "end_time": "2014-09-10T17: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,
            "description": {
                "fi": "<p> Tutustumme järjestelmäkameran painikkeisiin ja niiden käyttöön. Voit ottaa halutessasi oman järjestelmäkameran mukaan.</p><p> Ilmoittautuminen alkaa 13.8.2014. Verkossa ilmoittautuminen edellyttää sähköpostiosoitetta. Jos sinulla ei ole käytössä sähköpostiosoitetta, ilmoittaudu opastukseen puhelimitse (09) 310 85092 tai paikan päällä kirjastossa.</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Myllypuron_mediakirjasto\">Myllypuron mediakirjasto</a>\n</p>"
            },
            "name": {
                "fi": "Järjestelmäkameran perusteet"
            },
            "short_description": {
                "fi": "Järjestelmäkameran perusteet Myllypuron mediakirjastossa"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Myllypuron mediakirjasto, Asukastalo Myllärin sali"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:38686/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40097",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8269/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18105/?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": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 338,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.568013Z",
                    "last_modified_time": "2017-01-03T17:04:02.670469Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{20956BA8-B28E-44E9-9EF7-1D1F880B9F4E}/11258",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/338/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.495000Z",
            "date_published": "2014-06-01T21:00:00Z",
            "start_time": "2014-09-10T11:00:00Z",
            "end_time": "2014-09-10T12: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,
            "description": {
                "fi": "<p> <strong>Suomen kielen keskustelupiiri pitää kesätauon 25.6.-6.8.<br> Tervetuloa mukaan taas keskiviikkona 13.8. klo 14-15!</strong> </p><p> Tervetuloa Kielikahvila Suomaan!\n</p><p> Suomen kielen keskustelupiiri joka keskiviikko klo 14-15 Pasilan kirjastossa<br> Rautatieläisenkatu 8, sisäänkäynti Kellosilta 9.\n</p><p> Suomen kielen taitosi ei tarvitse olla sujuvaa mutta toivomme, että osaat jo hiukan ennestään. Vietämme rennosti aikaa yhdessä jutellen. Jännittää ei tarvitse – rohkeasti mukaan! Tuo kaverisikin!\n</p><p> Lisätietoja saat: riitta.hamalainen@hel.fi tai tulemalla mukaan keskiviikkoisin.\n</p><ul> <li> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\"> Pasilan kirjasto </a> </li> <li> <a href=\"http://www.facebook.com/kielikahvilapasila\">Kielikahvila Suoma Facebookissa</a> </li> <li> <a href=\"http://www.helmet.fi/fi-FI/Vinkit/Tapahtumat?es=&amp;t=Kielikahvilat%20ja%20keskusteluryhm%c3%a4t\">Kaikki HelMet-kielikahvilat ja keskusteluryhmät</a> </li>\n</ul>",
                "en": "<p> <strong>The Finnish Language Café will have a summer break from 25th June till 6th August.<br> Welcome again to our company on Wednesday, 13th August at 2 p.m.!</strong> </p><p> Are you looking for an informal and sociable way to improve your Finnish? Why not join the Finnish Language Café! <br> <br> Welcome to The Finnish Language Café in Pasila Library every Wednesday at 2 p.m. Your Finnish need not to be fluent, but we hope that you speak some Finnish. For more information, please contact riitta.hamalainen (at) hel.fi or simply turn up at the time above. <br> <br> Address for Pasila Library is Kellosilta 9. </p><ul> <li> <a href=\"http://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library\">Pasila Library</a> </li> <li> <a href=\"http://www.facebook.com/kielikahvilapasila\">Finnish Language Café on Facebook</a> </li> <li> <a href=\"http://www.helmet.fi/fi-FI/Vinkit/Tapahtumat?es=&amp;t=Kielikahvilat%20ja%20keskusteluryhm%c3%a4t\">All HelMet Language Cafes and Discussion Groups</a> </li>\n</ul>"
            },
            "name": {
                "fi": "Kielikahvila Suoma",
                "en": "Finnish Language Café Suoma"
            },
            "short_description": {
                "fi": "Tervetuloa Kielikahvila Suomaan!",
                "en": "Welcome to The Finnish Language Café!"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Pasilan kirjasto, S-point",
                "en": "Pasilan kirjasto, S-point"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40097/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40888",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18241/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.475000Z",
            "date_published": "2014-06-24T06:16:00Z",
            "start_time": "2014-09-10T07:00:00Z",
            "end_time": "2014-09-10T09: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,
            "description": {
                "fi": "<p> Käymme luennon ja keskustelun avulla läpi tietoturvaan, tietosuojaan ja muuhun internetissä toimimiseen liittyviä yleisiä perusasioita.\n</p><p> Ilmoittautuminen opastukseen alkaa keskiviikkona 13.8.2014. </p><p> Voit ilmoittautua opastukseen Myyrmäen kirjaston palveluneuvonnassa, puhelimitse 09 8393 5555 tai verkossa . Verkossa ilmoittautuminen edellyttää sähköpostiosoitetta. Jos sinulla ei ole käytössäsi omaa sähköpostiosoitetta, ilmoittaudu opastukseen puhelimitse tai paikan päällä kirjastossa. </p><p> Opastuksen kesto: n. 1,5 tuntia\n</p>"
            },
            "name": {
                "fi": "Yksityisyyden hallinta verkossa"
            },
            "short_description": {
                "fi": "Käymme luennon ja keskustelun avulla läpi tietoturvaan, tietosuojaan ja muuhun internetissä toimimiseen liittyviä yleisiä perusasioita."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Myyrmäen kirjasto, Tietopaja (2 krs.)"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40888/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40321",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18105/?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": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.454000Z",
            "date_published": "2012-10-12T10:54:00Z",
            "start_time": "2014-09-09T15:00:00Z",
            "end_time": "2014-09-09T16: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,
            "description": {
                "fi": "<p> Suomen kielen keskustelupiirimme on tarkoitettu kaikille, jotka haluavat oppia tai ylläpitää suomen kielen taitoaan. Monilta maahanmuuttajilla ei ole mahdollisuutta päästä keskustelemaan suomen kielellä ja siksi suomen kielen keskustelupiiri on loistava paikka kielen oppimiseen. Kokoontuminen järjestetään kokoushuoneessa joka viikko.</p> <p> Jatkuu taas syksyllä kirjaston kokoushuoneessa tiistaisin 9.9.2014 alkaen.</p> <p> Tule suoraan paikan päälle tai ilmoittaudu Itäkeskuksen kirjaston tietopalvelussa Stoassa tai soita tietopalveluun, puh. 310 85090. </p> <p> </p>\n<p> </p>"
            },
            "name": {
                "fi": "Suomen kielen keskustelupiiri"
            },
            "short_description": {
                "fi": "Suomen kielen keskustelupiirimme on tarkoitettu kaikille, jotka haluavat oppia tai ylläpitää suomen kielen taitoaan. Monilta maahanmuuttajilla ei ole mahdollisuutta päästä keskustelemaan suomen kielellä ja siksi suomen kielen keskustelupiiri on loistava paikka kielen oppimiseen. Kokoontuminen järjestetään kokoushuoneessa joka viikko. Jatkuu taas syksyllä 9.9.2014 alkaen joka tiistai klo 18.00-19.30 kirjaston kokoushuoneessa. Ilmoittaudu Itäkeskuksen kirjastossa Stoassa, puh. 310 85090, tai tule suoraan paikan päälle."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40321/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:41150",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 337,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.565967Z",
                    "last_modified_time": "2017-01-03T17:04:02.667494Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{B7355FD6-FFB7-4BB7-B4E6-0B39A1618295}/15611",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.435000Z",
            "date_published": "2014-06-25T16:19:31.970000Z",
            "start_time": "2014-09-09T14:30:00Z",
            "end_time": "2014-09-09T16: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,
            "description": {
                "fi": "<p> Tutustumme pienryhmässä rauhallisesti jutellen tablettitietokoneisiin. Sinulla ei tarvitse olla valmiita taitoja. Katsomme yhdessä miten tablettitietokone toimii ja mitä sillä oikein voi tehdä. </p><p> </p><p> </p><p> </p>"
            },
            "name": {
                "fi": "Slow: Tabletti tutuksi"
            },
            "short_description": {
                "fi": "Tutustumme pienryhmässä rauhallisesti jutellen tablettitietokoneisiin."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Entressen kirjasto"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:41150/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:41149",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 336,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.564089Z",
                    "last_modified_time": "2017-01-03T17:04:02.664731Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{B7355FD6-FFB7-4BB7-B4E6-0B39A1618295}/15611",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/336/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.417000Z",
            "date_published": "2014-06-25T16:19:31.970000Z",
            "start_time": "2014-09-09T14:30:00Z",
            "end_time": "2014-09-09T16: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,
            "description": {
                "fi": "<p> Tutustumme pienryhmässä rauhallisesti jutellen tablettitietokoneisiin. Sinulla ei tarvitse olla valmiita taitoja. Katsomme yhdessä miten tablettitietokone toimii ja mitä sillä oikein voi tehdä. </p><p> </p><p> </p><p> </p>"
            },
            "name": {
                "fi": "Slow: Tabletti tutuksi"
            },
            "short_description": {
                "fi": "Tutustumme pienryhmässä rauhallisesti jutellen tablettitietokoneisiin."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Entressen kirjasto"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:41149/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:41148",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 335,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.562035Z",
                    "last_modified_time": "2017-01-03T17:04:02.661776Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{B7355FD6-FFB7-4BB7-B4E6-0B39A1618295}/15611",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/335/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.394000Z",
            "date_published": "2014-06-25T16:19:31.970000Z",
            "start_time": "2014-09-09T14:30:00Z",
            "end_time": "2014-09-09T16: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,
            "description": {
                "fi": "<p> Tutustumme pienryhmässä rauhallisesti jutellen tablettitietokoneisiin. Sinulla ei tarvitse olla valmiita taitoja. Katsomme yhdessä miten tablettitietokone toimii ja mitä sillä oikein voi tehdä. </p><p> </p><p> </p><p> </p>"
            },
            "name": {
                "fi": "Slow: Tabletti tutuksi"
            },
            "short_description": {
                "fi": "Tutustumme pienryhmässä rauhallisesti jutellen tablettitietokoneisiin."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Entressen kirjasto"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:41148/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40310",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?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:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 334,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.560127Z",
                    "last_modified_time": "2017-01-03T17:04:02.658870Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{76643608-EDE4-4443-801F-B50560F10636}/24781",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/334/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.373000Z",
            "date_published": "2014-01-29T11:01:00Z",
            "start_time": "2014-09-09T11:30:00Z",
            "end_time": "2014-09-09T13: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,
            "description": {
                "fi": "<p> <strong>Tiistaisin klo 14.30-16.00 Kulttuuritila</strong>\n</p><p> Sellon kirjaston Runopiiri kokoontuu kerran kuussa Espoon Kirjailijoiden <strong>Ritva Laineen</strong> johdolla. Syksyn aikana luetaan ja keskustellaan seuraavasti:</p><p> <strong>Tiistaina 9.9. klo 14.30 – 16.00 </strong>\n</p><p> Tommy Tabermann: Runot 1970 – 2010 (Gummerus, 2012 <br> </p><p> <strong>Tiistaina 14.10. klo 14.30 – 16.00</strong>\n</p><p> Helvi Hämäläinen: Valitut runot (WSOY, 2007)<br> </p><p> <strong>Tiistaina 11.11. klo 14.30-16.00</strong>\n</p><p> Kaarlo Sarkia: Runot (WSOY 1979)<br> </p><p> <strong>Tiistaina 9.12. klo 14.30 – 16.00</strong>\n</p><p> Aale Tynni: Kootut runot 1938 – 1987 (WSOY, 2013)<br> </p><p> Kirjoja saatavilla kirjastossa!<br><br> Tervetuloa mukaan!</p><p> </p><p> </p>"
            },
            "name": {
                "fi": "Runopiiri"
            },
            "short_description": {
                "fi": "Sellon kirjastossa kokoontuu Runopiiri kerran kuukaudessa."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Kulttuuritila"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40310/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40618",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18105/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 333,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.558064Z",
                    "last_modified_time": "2017-01-03T17:04:02.655973Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{22DCA833-2B77-4F5A-A777-2D79041925D7}/27289",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.353000Z",
            "date_published": "2014-06-06T11:15:00Z",
            "start_time": "2014-09-09T11:00:00Z",
            "end_time": "2014-09-09T12: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,
            "description": {
                "fi": "<p> <b>Tiistaisin klo 14-15 </b> <br> <br> Englannin kielilkahvila kokoontuu normaalisti Kulttuuritilassa tiistaisin, mutta poikkeuksellisesti Elinassa seuraavina päivinä: 9.9., 14.10., 11.11., 25.11., 9.12. </p><p> Harjoittele englantia rennossa ympäristössä. Keskustele äidinkielenään englantia puhuvien kanssa ja nauti samalla kuppi kahvia tai teetä. Maksuton.Voit vaikka vain piipahtaa! Kaikki ovat tervetulleita!</p><p> <strong>English Culture Coffee Hour</strong> <br><br><strong>On Tuesdays at 14-15</strong><br><br> We will meet on Tuesdays in the Cultural Space, except these dates in Elina: 9.9., 14.10., 11.11., 25.11., 9.12. <br><br> Practice your English in a comforting, relaxed setting. Talk with native speakers and enjoy a cup of coffee or tea all while taking a break . No cost, no registration, just drop by!</p><p> All are Welcome!<br><br> 12.8. - 23.12.2014</p><p> </p>",
                "en": "<p> Practice your English in a comforting, relaxed setting. Talk with native speakers and enjoy a cup of coffee or tea all while taking a break . No cost, no registration, just drop by!<br><br> We will meet on Tuesdays in Elina, except these dates in the sofa area of Cultural Space (next to Elina): 9.9., 14.10., 11.11., 25.11., 9.12. </p><p> All are Welcome!<br><br> 12.8. - 23.12.2014 </p><p> </p>"
            },
            "name": {
                "fi": "Englannin kielikahvila",
                "en": "English Culture Coffee Hour"
            },
            "short_description": {
                "fi": "Harjoittele englantia rennossa ympäristössä. Keskustele äidinkielenään englantia puhuvien kanssa ja nauti samalla kuppi kahvia tai teetä. Maksuton. Voit vaikka vain piipahtaa! Kaikki ovat tervetulleita!",
                "en": "Practice your English in a comforting, relaxed setting. Talk with native speakers and enjoy a cup of coffee or tea all while taking a break"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Kulttuuritila tai Elina",
                "en": "Sello Library, Elina or Cultural Space"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40618/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:39724",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/?format=api"
            },
            "keywords": [
                {
                    "@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:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 332,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.556030Z",
                    "last_modified_time": "2017-01-03T17:04:02.652949Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{7BA506EC-C698-46E8-B137-E92FD60F03EC}/21924",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/332/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.332000Z",
            "date_published": "2013-10-18T09:30:00Z",
            "start_time": "2014-09-09T10:00:00Z",
            "end_time": "2014-09-09T12: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,
            "description": {
                "fi": "<p> Itäkeskuksen kirjaston tiistailukupiiri kokoontuu tiistaisin 13 - 15 noin kerran kuukaudessa.</p><p> Piiri on tällä hetkellä täynnä!</p><p> 9.9. Amos Oz:<em> Älä kysy yöltä</em>, Tammi, 2010 </p><p> 7.10. Anton Tsehov: <em>Vanja eno</em>, Kirja kerrallaan, 2011 </p><p> 11.11. John Steinbeck: <em>Hyvien ihmisten juhla</em>, Tammi, useita painoksia</p><p> 9.12. Andrei Makine: <em>Ikuisen rakkauden kosketuksia</em>, WSOY, 2012</p><p> <br> Lisätietoja ja ilmoittautumiset:</p><p> <a href=\"mailto:lukupiiri_itakeskuksen_kirjasto@hel.fi\"> <u>lukupiiri_itakeskuksen_kirjasto@hel.fi</u> </a> <br> tai 09 310 85 090</p><p> </p>"
            },
            "name": {
                "fi": "Itäkeskuksen kirjasto tiistain lukupiiri"
            },
            "short_description": {
                "fi": "Luvassa on leppoisaa keskustelua kirjallisuudesta. Piiri on tällä hetkellä täynnä."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:39724/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:39174",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:18262/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?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:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 331,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.554037Z",
                    "last_modified_time": "2017-01-03T17:04:02.650012Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{BEFBD406-2DF2-4DF1-B317-C9C34C387F90}/19595",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/331/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.306000Z",
            "date_published": "2014-05-16T07:25:40.163000Z",
            "start_time": "2014-09-09T09:00:00Z",
            "end_time": "2014-09-09T11: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,
            "description": {
                "fi": "<p> Lumon lukupiirin syyskuun kirja on <a href=\"http://haku.helmet.fi/iii/encore/record/C|Rb2103763\">Pekka Hiltusen romaani Iso</a> (WSOY, 2013). Kirja kertoo 37-vuotiaasta hyvin fiksusta, hyvin lihavasta ja hyvin terveestä Anni Kanttosta. Annilla on vain yksi ongelma: muu maailma. Iso on romaani lihavuudesta, häpeästä ja ihmiskunnan pakkomielteestä painoon.</p> <p> Syksyn ohjelma:</p> <p> 12.8.Sanna Tahvanainen: Kuningatar (Schildts &amp; Söderströms, 2013)<br> 9.9. Pekka Hiltunen: Iso (WSOY, 2013)<br> 7.10. Margaret Atwood: Herran tarhurit (Otava, 2010)<br> 11.11. Jenni Linturi: Malmi, 1917 (Teos, 2013)<br> 9.12. Fredrik Backman: Mies joka rakasti järjestystä (Atena, 2013)</p> <p> Kuukauden kirjaa voi itse varata Helmetistä tai noutaa Lumon kirjastosta. Lukupiiriin ei tarvitse ilmoittautua ja kirjasto tarjoaa kahvit.</p> <p> Lisätietoja Lumon kirjastosta ja sähköpostitse elina.rasanen(a)vantaa.fi</p> <p> Tervetuloa!</p> <a href=\"http://kirjasto.vantaa.fi/lukupiiri/\">Vantaan kirjastojen lukupiirit</a>"
            },
            "name": {
                "fi": "Lumon lukupiiri"
            },
            "short_description": {
                "fi": "Lumon lukupiiri kokoontuu kirjaston Satunurkassa klo 12-14."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Satunurkka"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:39174/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:36011",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8269/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/?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:45400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.286000Z",
            "date_published": "2014-02-13T22:00:00Z",
            "start_time": "2014-09-08T15:00:00Z",
            "end_time": "2014-09-08T17: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,
            "description": {
                "fi": "<p> Do you read novels in English? Would you like to discuss books with others? If yes, then come and join The Pasila Reading Circle! We will meet once a month at the Pasila Library. Discussions will be held in English or in English and Finnish according to the wishes of the participants.</p><p> Monday 8 September at 6 pm: <em>Paul Auster &amp; J. M. Coetzee: <a href=\"http://armas.btj.fi/request.php?id=f55f7189859e3777&amp;pid=9780571299263&amp;qtype=b\">Here and Now: Letters 2008-2011</a></em>.<br> It would be great, if everyone also read one novel by either Auster or Coetzee for this meeting. We will also choose books for our October, November and December meetings during this meeting.<br><br> Our meetings will be held in a meeting room on the upper floor of Pasila library.<br> Follow the orange signs to find there from the ground floor.<br><br> To join &amp; for more information contact Chief Librarian Tiina Tarvonen<br> tiina.tarvonen(at)hel.fi or 050 402 5816.<br><br><a href=\"http://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library/Whats_going_on/Come_and_join_The_Pasila_Reading_Circle(2823)\">Schedule for autumn 2014</a><br><br><a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasila Library</a></p>",
                "en": "<p> Do you read novels in English? Would you like to discuss books with others? If yes, then come and join The Pasila Reading Circle! We will meet once a month at the Pasila Library. Discussions will be held in English or in English and Finnish according to the wishes of the participants.</p><p> Monday 8 September at 6 pm: <em>Paul Auster &amp; J. M. Coetzee: <a href=\"http://armas.btj.fi/request.php?id=f55f7189859e3777&amp;pid=9780571299263&amp;qtype=b\">Here and Now: Letters 2008-2011</a></em>.<br> It would be great, if everyone also read one novel by either Auster or Coetzee for this meeting. We will also choose books for our October, November and December meetings during this meeting.<br><br> Our meetings will be held in a meeting room on the upper floor of Pasila library.<br> Follow the orange signs to find there from the ground floor.<br><br> To join &amp; for more information contact Chief Librarian Tiina Tarvonen<br> tiina.tarvonen(at)hel.fi or 050 402 5816.<br><br><a href=\"http://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library/Whats_going_on/Come_and_join_The_Pasila_Reading_Circle(2823)\">Schedule for autumn 2014</a><br><br><a href=\"http://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library\">Pasila Library</a></p>"
            },
            "name": {
                "fi": "Pasila Reading Circle",
                "en": "Pasila Reading Circle"
            },
            "short_description": {
                "fi": "Do you read novels in English? Would you like to discuss books with others? If yes, then come and join The Pasila Reading Circle!",
                "en": "Do you read novels in English? Would you like to discuss books with others? If yes, then come and join The Pasila Reading Circle!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:36011/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40771",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@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:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 329,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.549907Z",
                    "last_modified_time": "2017-01-03T17:04:02.647059Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{23219F0F-FEA9-4594-96B7-5A47F1A9F60B}/20285",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/329/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.243000Z",
            "date_published": "2013-08-22T11:00:00Z",
            "start_time": "2014-09-08T13:30:00Z",
            "end_time": "2014-09-08T14: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,
            "description": {
                "fi": "<p> <br> Capital Capoeiran lapsi-aikuisryhmän treenit pidetään<strong></strong>Akseli-salissa<strong> m</strong><strong>aanantaisin klo 16:30 - 17:30 (HUOM EI 25.8., 6.10., 10.11.)</strong></p><p> Treenit järjestetään yhteistyössa Grupo Cultural Gente Braileiran kanssa. Tunnit ovat ilmaisia.</p><p> Lue lisää ja ilmoittaudu - <a href=\"http://www.capoeiracapital.fi/\">www.capoeiracapital.fi</a>\n</p><p> 18.8.-15.12.2014<br><br> Capoeira on brasilialainen liikuntalaji, jossa yhdistyvät kamppailu, tanssi, akrobatia ja fyysisen peli. Capoeira on moniulotteinen laji ja sitä pelataan afrobrasilialaisen musiikin tahdissa. </p><p> </p>",
                "en": "<p> <br> Capital Capoeiran for children and their parents on Mondays at<strong> Akseli-sali at</strong><strong> 4.30 pm to 5.30 pm.</strong> </p><p> Organized together with Grupo Cultural Gente Braileira. Free of charge.</p><p> More information and sign up - <a href=\"http://www.capoeiracapital.fi/\">www.capoeiracapital.fi</a>\n</p><p> 18.8.-15.12.2014</p><p> </p>"
            },
            "name": {
                "fi": "Capital Capoeira",
                "en": "Capital Capoeira"
            },
            "short_description": {
                "fi": "Capoeiraa lapsi-aikuisryhmässä maanantaisin",
                "en": "Capoeira on Mondays at 4.30 pm"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Akseli-sali",
                "en": "Sello library, Akseli-sali"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40771/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40879",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.222000Z",
            "date_published": "2014-06-23T06:57:00Z",
            "start_time": "2014-09-08T13:00:00Z",
            "end_time": "2014-09-08T14: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,
            "description": {
                "fi": "<p> Tule tietopajaan työskentelemään! Paikalla on ohjaaja neuvomassa tietotekniikkaan ja internetiin liittyvissä kysymyksissä.</p><p> <strong>Maanantaisin klo 16-17.30, Pajassa, 2. kerros</strong>\n</p><p> Ei ilmoittautumista, vapaa pääsy!<br><br><strong><a href=\"http://www.helmet.fi/sello\">http://www.helmet.fi/sello<br><br> 1</a>.9.-15.12.2014</strong><br> </p>"
            },
            "name": {
                "fi": "Tietopaja"
            },
            "short_description": {
                "fi": "Tule tietopajaan työskentelemään! Paikalla on ohjaaja neuvomassa tietotekniikkaan ja internetiin liittyvissä kysymyksissä.\nMaanantaisin klo 16-17.30, Pajassa, 2. kerros"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Paja"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40879/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:41089",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18105/?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": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 328,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.547818Z",
                    "last_modified_time": "2017-01-03T17:04:02.644081Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{A795B360-ABDF-4DB3-9BFD-31AC7C5F5DC9}/26265",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/328/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.203000Z",
            "date_published": "2014-06-25T07:09:00Z",
            "start_time": "2014-09-08T11:00:00Z",
            "end_time": "2014-09-08T12: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,
            "description": {
                "fi": "<p> <strong>Ryhmä kokoontuu maanantaisin klo 14-15 Elinassa</strong> <br> <br> Kielikahvila on keskusteluryhmä, jossa harjoitellaan suomen kielellä puhumista. Ryhmä on tarkoitettu henkilöille, jotka ovat käyneet jo kielikursseja, mutta haluavat pitää puhekielen kielitaitoaan yllä esimerkiksi tällaisessa vapaamuotoisessa keskusteluryhmässä.<br><br><strong> </strong> <strong><a href=\"https://www.facebook.com/KielikahvilaSello\">&gt;&gt; Kielikahvila facebookissa</a></strong><br><br> Ei ennakkoilmoittautumista! Kahvi / tee ja pientä purtavaa!</p><p> 1.9.2014.-22.12.2014</p><p> Tervetuloa mukaan!<br> </p>",
                "en": "<p> <strong>Mondays at 2- 3 pm in Elina</strong>\n</p><p> The Language Cafe is a discussion group, where we practice speaking Finnish. The group is intended for those who have already taken language courses and want to improve their oral skills in an informal discussion group. No registration required. Coffee / tee and snacks served! For more information please contact Leena Laitinen, email: leena.laitinen @ espoo.fi or tel. 046 8771904</p><p> Welcome!<br><br> 1.9.-22.12.2014<br><br><br><br> Kielikahvila on keskusteluryhmä, jossa harjoitellaan suomen kielellä puhumista. Ryhmä on tarkoitettu henkilöille, jotka ovat käyneet jo kielikursseja, mutta haluavat pitää puhekielen kielitaitoaan yllä esimerkiksi tällaisessa vapaamuotoisessa keskusteluryhmässä.</p><p> Ryhmä kokoontuu maanantaisin klo 14-15 Elinassa</p><p> Ei ennakkoilmoittautumista! Kahvi / tee ja pientä purtavaa!<br><br> Tervetuloa mukaan!<br><br> 1.9.-22.12.2014</p><p> <br> <strong>&gt;&gt; <a href=\"https://www.facebook.com/KielikahvilaSello\">Kielikahvila facebookissa</a></strong> <br> </p>"
            },
            "name": {
                "fi": "Kielikahvila Sello",
                "en": "Language Café Sello"
            },
            "short_description": {
                "fi": "Kielikahvila on keskusteluryhmä, jossa harjoitellaan suomen kielellä puhumista. Kokoonnumme Elinassa",
                "en": "The language cafe is a discussion group, where we practice speaking Finnish"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Elina",
                "en": "Sello Library, Elina"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:41089/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:40303",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18105/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 327,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.545823Z",
                    "last_modified_time": "2017-01-03T17:04:02.641137Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{734314AE-6632-4BA0-9C7B-5F205AEB253D}/17469",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/327/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.183000Z",
            "date_published": "2014-06-06T05:00:00Z",
            "start_time": "2014-09-04T14:00:00Z",
            "end_time": "2014-09-04T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p> <br> El grupo está dirigido a personas que les interesa el español, este grupo es de discusión informal, con temas de uso cotidiano. No se necesita ningún nivel, podemos empezar desde el inicio juntos.No es necesario registrarse.<br><br> ¡Bienvenidos a disfrutar de un tiempo divertido!<br><br><br> Ryhmä on suunnattu espanjan kielestä kiinnostuneille. Keskustelemme arkipäivän asioista.</p><p> <strong>Kokoonnumme torstaisin klo 17-18 </strong>Elinassa, 2. kerros<br><br> 14.8.-18.12.2014</p> Tervetuloa!<br><br>"
            },
            "name": {
                "fi": "¡Hablamos español! - Tule puhumaan espanjaa!"
            },
            "short_description": {
                "fi": "Keskustelemme arkipäivän asioista torstaisin klo 17-18"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Elina"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:40303/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:39821",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@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": [],
            "offers": [],
            "data_source": "helmet",
            "publisher": "ahjo:45400",
            "sub_events": [],
            "images": [
                {
                    "id": 326,
                    "license": "cc_by",
                    "created_time": "2016-02-20T13:30:17.543932Z",
                    "last_modified_time": "2017-01-03T17:04:02.638138Z",
                    "name": "",
                    "url": "http://www.helmet.fi/download/noname/{1CBC21CA-AB85-438B-98DB-CDAE0EB90C60}/26260",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": null,
            "last_modified_time": "2014-06-26T05:44:52.138000Z",
            "date_published": "2013-12-17T06:00:00Z",
            "start_time": "2014-09-04T13:00:00Z",
            "end_time": "2014-09-04T16:45: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,
            "description": {
                "fi": "<p> <br> <strong>Lautapeliseuran lautapelikerho kokoontuu Akseli-salissa torstaisin klo 16-19.45. </strong> <br> <br> Lisätietoja ja poikkeusaikoja ja -paikkoja: <strong><a href=\"http://www.lautapeliseura.fi/foorumi/\">foorumi</a></strong> <br><br> Pelitietoa <strong><a href=\"http://www.lautapelaaja.net\">http://www.lautapelaaja.net</a> ja </strong><strong><a href=\"http://www.lautapeliseura.fi\">http://www.lautapeliseura.fi</a> <br><br><a href=\"https://www.facebook.com/pages/Suomen-lautapeliseura/164470176919869\">Facebookissa</a></strong></p><p> Tervetuloa!<br> </p>"
            },
            "name": {
                "fi": "Lautapelikerho"
            },
            "short_description": {
                "fi": "Lautapeliseuran lautapelikerho kokoontuu Akseli-salissa torstaisin klo 16-19.45."
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sellon kirjasto, Akseli-sali"
            },
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:39821/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}