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

{
    "meta": {
        "count": 1928,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&internet_based=true&page=97",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&internet_based=true&page=95"
    },
    "data": [
        {
            "id": "helmet:209844",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64044,
                    "license": "cc_by",
                    "created_time": "2020-04-05T13:19:07.590672Z",
                    "last_modified_time": "2020-04-05T13:19:07.590693Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{83765EAD-5206-4627-9B7E-E848DB72F1A2}/82147",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64044/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-04-05T13:19:07.370506Z",
            "last_modified_time": "2020-04-05T13:19:07.638714Z",
            "date_published": "2020-04-05T12:25:56.520000Z",
            "start_time": "2020-04-08T17:00:00Z",
            "end_time": "2020-04-08T18: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Kulttuuribunkkerin vierailijat -ohjelmassa kutsumme eri alojen asiantuntijoita puhumaan työstään, vastaamaan asiakkaiden kysymyksiin ja juttelemaan kiinnostuneiden kanssa. Kirjaston henkilökunta mahdollistaa tilaisuuden, moderoi keskustelua ja tarvittaessa haastattelee vieraita. Minkälaisia ihmisiä sinä haluaisit tulla kuulemaan ja keiltä haluaisit saada vastauksia kriittisiin kysymyksiin? Kerro meille toiveistasi, niin etsimme oikean asiantuntijan käsiimme.</p><p> <b>Toinen vieraamme on graafinen suunnittelija Maria “Bifu” Ahonen. Bifun kädestä on saanut alkunsa muun muassa useat PMMP:n, Antti Tuiskun ja Anna Puun levynkansikuvitukset. Levynkansitaiteen ohella kattavan uran varrelle on mahtunut myös esimerkiksi musiikkivideoita, kirjankansia ja lukuisia mainosgrafiikoita. Taiteellisen suunnittelutyön ohella ehtivä puurtaja toimii myös Twinz of Evil DJ -duon toisena jäsenenä. Työnäytteitä voit käydä etukäteen katsastamassa osoitteessa: <a href=\"https://www.bifffen.com/\">https://www.bifffen.com/</a></b> </p><p>Kulttuuribunkkeri on keskustelukanava kulttuurin ystäville. Käytämme Discord-palvelinta kokoontuessamme keskustelemaan erilaisista ilmiöistä, kirjallisuudesta, elokuvista ja peleistä kirjaston henkilökunnan avustuksella.</p><p> <strong>Miten pääsen mukaan tapahtumaan?</strong> <br> Tutustu Kulttuuribunkkeriin ja liity mukaan! Liittymisohjeet löydät <strong><a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Vinkit/Kulttuuribunkkeri_keskustelukanava_Disco(209445)\">täältä</a> .</strong></p><p> <em>Kuva: Bifu</em> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: Kulttuuribunkkerin vierailija"
            },
            "location_extra_info": {
                "fi": "Kulttuuribunkkeri -discord"
            },
            "short_description": {
                "fi": "Kulttuuribunkkerin vierailijat -ohjelmassa kutsumme eri alojen asiantuntijoita puhumaan työstään, vastaamaan asiakkaiden kysymyksiin ja juttelemaan kiinnostuneiden kanssa. Toinen vieraamme on graafinen suunnittelija Maria “Bifu” Ahonen. Tapahtuma järjestetään Kulttuuribunkkeri -discordissa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209844/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afyt7sajaq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p963/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/685699638859478/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64037,
                    "license": "event_only",
                    "created_time": "2020-04-03T11:05:02.899897Z",
                    "last_modified_time": "2020-04-09T05:23:56.446299Z",
                    "name": "Friskis-livetreeni",
                    "url": "http://api.hel.fi/linkedevents/media/images/Live_mimma.jpg",
                    "cropping": "286,0,915,628",
                    "photographer_name": "Friskis ja Svettis",
                    "alt_text": "Hymyilevä nainen",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64037/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-03T11:23:26.352774Z",
            "last_modified_time": "2020-04-03T11:23:26.352795Z",
            "date_published": null,
            "start_time": "2020-04-05T15:00:00Z",
            "end_time": "2020-04-05T16: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://youtu.be/xfUERREmmRI",
                "en": "https://youtu.be/xfUERREmmRI"
            },
            "description": {
                "fi": "<p>Friskis ja Svettis välittää liikunnan iloa kaikille livetreenien kautta, koska ihmiset eivät voi liikkua yhdessä liikuntasaleilla, </p><p>Ensi sunnuntaina on tarjolla kaksi hauskaa, maksutonta tuntia, joihin voi helposti osallistua kotoa.</p><p>YouTube <br>5.4.  klo 16.30-19.00</p><p>klo 16.30-17.30 Rundi sportti<br>Lihaskuntopainotteinen liikuntatunti, jossa on lihasvoima- ja sykeosuuksien lisäksi kiertoharjoitteluosuus.Varaa mukaan kaksi wc-paperirullaa, jakkara 3-4 kg ja kaksi painavaa kirjaa - voi myös käyttää käsipainoja ja kahvakuulaa. Suurin osa liikkeistä tehdään kehonpainoharjoitteluna. <br>https://youtu.be/mucyrZYHvjc </p><p>Klo 18.00-19.00 Jumppa + Jumppa sportti -yhdistelmätunti<br>Kaksi ohjaajaa, kaksi versiota liikkeistä, joista voi valita omansa ja soveltaa vapaasti. <br>https://youtu.be/xfUERREmmRI</p><p>Maksuton, tunnit soveltuvat kaikille</p>",
                "en": "<p>Friskis and Svettis is passing on the joy of movement through online classes, because people can't exercise together in gyms.</p><p>Next Sunday they offer two fun classes that are easily attend at home. </p><p>YouTube<br>5.4. 16.30-19.00</p><p>16.30-17.30 Rundi sportti<br>Rundi sportti combines strength exercise to circuit training. You need two rolls of toilet paper, a chair (3-4 kg) and two heavy books to use as weights, also dumbbells and a kettlebell can be used. <br>https://youtu.be/mucyrZYHvjc</p><p>18.00-19.00 Jumppa + Jumppa sportti Combination Class<br>This class has two instructors, that show two different versions of the exercises. <br>https://youtu.be/xfUERREmmRI</p><p>Free of charge, suitable for everybody</p>"
            },
            "provider": {
                "fi": "Friskis & Svettis",
                "en": "Friskis & Svettis"
            },
            "name": {
                "fi": "Friskis-livetreeni virtuaalisesti",
                "en": "Friskis' Online Workout virtually"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Friskis ja Svettis välittää liikunnan iloa kaikille livetreenien kautta, koska ihmiset eivät voi liikkua yhdessä liikuntasaleilla, ",
                "en": "Friskis and Svettis is passing on the joy of movement through online classes, because people can't exercise together in gyms."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyt7sajaq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afyt7rx5py",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p963/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/685699638859478/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64037,
                    "license": "event_only",
                    "created_time": "2020-04-03T11:05:02.899897Z",
                    "last_modified_time": "2020-04-09T05:23:56.446299Z",
                    "name": "Friskis-livetreeni",
                    "url": "http://api.hel.fi/linkedevents/media/images/Live_mimma.jpg",
                    "cropping": "286,0,915,628",
                    "photographer_name": "Friskis ja Svettis",
                    "alt_text": "Hymyilevä nainen",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64037/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-03T11:22:17.869039Z",
            "last_modified_time": "2020-04-03T11:22:17.869069Z",
            "date_published": null,
            "start_time": "2020-04-05T13:30:00Z",
            "end_time": "2020-04-05T14: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://youtu.be/mucyrZYHvjc",
                "en": "https://youtu.be/mucyrZYHvjc"
            },
            "description": {
                "fi": "<p>Friskis ja Svettis välittää liikunnan iloa kaikille livetreenien kautta, koska ihmiset eivät voi liikkua yhdessä liikuntasaleilla, </p><p>Ensi sunnuntaina on tarjolla kaksi hauskaa, maksutonta tuntia, joihin voi helposti osallistua kotoa.</p><p>YouTube <br>5.4.  klo 16.30-19.00</p><p>klo 16.30-17.30 Rundi sportti<br>Lihaskuntopainotteinen liikuntatunti, jossa on lihasvoima- ja sykeosuuksien lisäksi kiertoharjoitteluosuus.Varaa mukaan kaksi wc-paperirullaa, jakkara 3-4 kg ja kaksi painavaa kirjaa - voi myös käyttää käsipainoja ja kahvakuulaa. Suurin osa liikkeistä tehdään kehonpainoharjoitteluna. <br>https://youtu.be/mucyrZYHvjc </p><p>Klo 18.00-19.00 Jumppa + Jumppa sportti -yhdistelmätunti<br>Kaksi ohjaajaa, kaksi versiota liikkeistä, joista voi valita omansa ja soveltaa vapaasti. <br>https://youtu.be/xfUERREmmRI</p><p>Maksuton, tunnit soveltuvat kaikille</p>",
                "en": "<p>Friskis and Svettis is passing on the joy of movement through online classes, because people can't exercise together in gyms.</p><p>Next Sunday they offer two fun classes that are easily attend at home. </p><p>YouTube<br>5.4. 16.30-19.00</p><p>16.30-17.30 Rundi sportti<br>Rundi sportti combines strength exercise to circuit training. You need two rolls of toilet paper, a chair (3-4 kg) and two heavy books to use as weights, also dumbbells and a kettlebell can be used. <br>https://youtu.be/mucyrZYHvjc</p><p>18.00-19.00 Jumppa + Jumppa sportti Combination Class<br>This class has two instructors, that show two different versions of the exercises. <br>https://youtu.be/xfUERREmmRI</p><p>Free of charge, suitable for everybody</p>"
            },
            "provider": {
                "fi": "Friskis & Svettis",
                "en": "Friskis & Svettis"
            },
            "name": {
                "fi": "Friskis-livetreeni virtuaalisesti",
                "en": "Friskis' Online Workout virtually"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Friskis ja Svettis välittää liikunnan iloa kaikille livetreenien kautta, koska ihmiset eivät voi liikkua yhdessä liikuntasaleilla, ",
                "en": "Friskis and Svettis is passing on the joy of movement through online classes, because people can't exercise together in gyms."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyt7rx5py/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afw46sccne",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1304/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004991/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004809/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005034/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004869/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004987/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003878/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003609/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003571/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003075/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003825/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003197/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003667/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003068/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003377/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003664/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003557/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003656/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003975/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003995/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003504/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003678/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004631/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003660/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003344/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003692/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003284/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004049/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004053/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004062/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004097/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003490/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004092/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003670/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004234/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004361/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004076/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004742/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004228/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004203/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003983/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003507/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003580/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003589/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003801/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003605/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003630/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001004276/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003634/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003638/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003652/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001003979/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005084/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005072/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005119/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005061/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005067/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005170/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005161/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005203/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005265/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005053/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005306/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005300/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005296/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005331/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005323/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005407/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005397/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005389/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005347/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005370/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005404/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005412/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005445/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005358/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005463/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005472/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005458/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005480/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005505/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005454/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005519/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005543/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005562/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005556/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005343/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005575/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005571/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005589/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005714/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005699/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005684/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005680/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005750/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005795/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005831/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005863/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005855/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005850/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005888/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005898/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005931/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005938/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005946/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005942/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005952/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/eventshelsinki:5001005960/?format=api"
                }
            ],
            "images": [
                {
                    "id": 39301,
                    "license": "event_only",
                    "created_time": "2017-09-27T12:26:15.067741Z",
                    "last_modified_time": "2017-09-27T12:26:15.067771Z",
                    "name": "Helsinki-päivä 2018",
                    "url": "http://api.hel.fi/linkedevents/media/images/20160612_1306__DSF4556_6293.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Helsinki Marketing (c) Jussi Hellsten",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/39301/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-10-15T11:58:02.351979Z",
            "last_modified_time": "2020-04-03T06:42:18.389165Z",
            "date_published": null,
            "start_time": "2020-06-11T21:01:00Z",
            "end_time": "2020-06-12T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.helsinkipaiva.fi",
                "sv": "http://www.helsinkipaiva.fi/sv",
                "en": "http://www.helsinkipaiva.fi/en",
                "zh_hans": "http://www.helsinkipaiva.fi/en"
            },
            "description": {
                "fi": "<p>Koronavirustilanteesta johtuvien poikkeusolosuhteiden vuoksi Helsinki-päivää juhlitaan tänä vuonna ainoastaan verkon ja sosiaalisen median välityksellä. Helsinki-päivän ohjelmaa välitetään 12.6. Helsinki-kanavalla sekä sosiaalisessa mediassa ja tapahtumanjärjestäjien omissa kanavissa.</p><p>Helsinki juhlii ja hurmaa syntymäpäivänään 12.6. kaupunkilaisia ja matkailijoita. Päivästä on muodostunut kaupunkijuhla, joka tarjoaa runsaasti ohjelmaa, tekemistä ja näkemistä kaikenikäisille. </p><p>Helsinki<br>12.6.</p>",
                "sv": "<p>På grund av den exceptionella situation som coronaviruset orsakat firas Helsingforsdagen i år endast på nätet och på sociala medier. Helsingforsdagens program förmedlas den 12 juni på Helsingforskanalen, sociala medier och i evenemangsarrangörernas egna kanaler.</p><p>Helsingfors firar och charmar både stadsbor och turister på sin födelsedag den juni 12. Dagen har utvecklats till en stadsfest som i stor omfattning bjuder på program, aktiviteter och sevärt för folk i alla åldrar. </p><p>Helsingfors<br>12.6.</p>",
                "en": "<p>The annual June 12 festivities will be transferred online, due to the covid-19 coronavirus. The city invites interested event organisers to join the programme line-up with digital innovations, which will be live-streamed on the Helsinki-kanava video service, social media, and event organiser channels.</p><p>Helsinki will once again celebrate and entertain residents and visitors on its birthday, 12 June. Helsinki Day has become a city festival that offers lots to see and do for people of all ages. </p><p>Helsinki <br>12.6.</p>",
                "zh_hans": "<p>6月12日赫尔辛基将再次庆祝自己的生日。这一天将会安排各式各样的活动以供市民们尽欢。现如今赫尔辛基每年的生日庆祝已经形成了传统,活动安排的可看性、可参与性以及对各个年龄段的参与者都达到了很高的专业性。</p><p>赫尔辛基生日当天,市中心将会充满人群、音乐以及多样的活动。市中心区域之外也可以看到不同的庆祝方式。</p><p>活动地点:赫尔辛基<br>时间:6月12日<br>活动免费</p>"
            },
            "provider": {
                "fi": "Helsingin kaupunki",
                "sv": "Helsingfors stad",
                "en": "City of Helsinki",
                "zh_hans": "活动组织者:赫尔辛基市"
            },
            "name": {
                "fi": "Helsinki-päivä 2020 virtuaalisesti",
                "sv": "Helsingforsdagen 2020 virtuellt",
                "en": "Helsinki Day 2020 virtually",
                "zh_hans": "赫尔辛基日2020"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Koronavirustilanteesta johtuvien poikkeusolosuhteiden vuoksi Helsinki-päivää juhlitaan tänä vuonna ainoastaan verkon ja sosiaalisen median välityksellä.",
                "sv": "På grund av den exceptionella situation som coronaviruset orsakat firas Helsingforsdagen i år endast på nätet och på sociala medier. ",
                "en": "The annual June 12 festivities will be transferred online, due to the covid-19 coronavirus. The city invites interested event organisers to join the programme",
                "zh_hans": "6月12日赫尔辛基将再次庆祝自己的生日。这一天将会安排各式各样的活动以供市民们尽欢。"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afw46sccne/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209713",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64031,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:54.800047Z",
                    "last_modified_time": "2020-04-02T10:42:54.800069Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{69218FF1-3334-4297-9D3B-3149CA241C68}/82077",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64031/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-04-02T10:42:54.686103Z",
            "last_modified_time": "2020-04-02T16:18:48.437101Z",
            "date_published": "2020-03-30T21:00:00Z",
            "start_time": "2020-05-04T05:00:00Z",
            "end_time": "2020-05-04T19: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Oodin Oneshot-roolipelikerho viettää vuoden 2020 Star Wars-päivää edelleen evakossa fyysisiltä pelipöydiltä hologrammiviestinnän tai intergalaktisen viestiyhteyksien välityksellä. Tapahtuman oneshotit julkaistaan ja niihin ilmoittaudutaan tässä tapahtumassa kerhon FB-ryhmässä olevassa Facebook-eventissä.</p><p>Mukaan pääset siis mukaan liittymällä ryhmään ja painamalla tapahtumaan siellä \"Ehkä\" tai \"Osallistun\" </p><p>Pyrimme pitämään myös pelit mahdollisimman matalan kynnyksen toimintana joten etäpelien pelinjohtajat ovat lupautuneet myös tekniseksi tueksi pelinsä suhteen. Olemme myös saaneet kerhon oneshotkäyttöön \"Roolipelit\"-discord-palvelimelta kaksi kuuden hengen pelihuonetta jotka ovat käytössä etäpelien vetäjille. Pelinjohtajat saavat kuitenkin valita kommunikointivälineensä ja pelin havainnollistamisalustansa itse. </p><p>Nämä roolipelit on tarkoitettu yläkouluikäisille ja sitä vanhemmille. </p><p>Tervetuloa ja \"May the force be with you\". </p><p> <br> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: Star Wars-päivän etäpelit Oodin roolipelikerhossa."
            },
            "location_extra_info": {
                "fi": "Online"
            },
            "short_description": {
                "fi": "Etätapahtuma: Star Wars-päivän etäpelit Oodin roolipelikerhossa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209713/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209671",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@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": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64029,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:50.927081Z",
                    "last_modified_time": "2020-04-02T10:42:50.927101Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CC227BB9-B9F5-4368-9BCB-86716AFA8B3E}/82051",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2020-04-02T10:42:52.628911Z",
            "last_modified_time": "2020-04-02T16:18:41.958428Z",
            "date_published": "2020-03-31T07:22:00Z",
            "start_time": "2020-04-09T09:00:00Z",
            "end_time": "2020-04-09T10: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<h3> <strong>Coding workshop for kids on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> Thursday April 2 at 12 pm – 1 pm!</h3><p> <br> Come learn how to code easily in Scratch’s programming interface online. The workshop is suitable for those who have no programming experience and is designed for 7-13 year olds.<br> Scratch is a free programming environment designed to engage children in creative learning experiences. See <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a> for more information.</p><h3> <br> <strong>The coding workshop’s second part, Game Programming in Scratch, will take place on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> On Thursday April 9 at 12 pm - 1 pm<br> </h3><p> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjasto/</a> <br> </p><p>#suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #elibrary #instagramlive #instalive<br><br> </p>",
                "en": "<h3> <strong>Coding workshop for kids on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> Thursday April 2 at 12 pm – 1 pm!</h3><p> <br> Come learn how to code easily in Scratch’s programming interface online. The workshop is suitable for those who have no programming experience and is designed for 7-13 year olds.<br> Scratch is a free programming environment designed to engage children in creative learning experiences. See <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a> for more information.</p><h3> <br> <strong>The coding workshop’s second part, Game Programming in Scratch, will take place on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> On Thursday April 9 at 12 pm - 1 pm<br> </h3><p> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjasto/</a> <br> </p><p>#suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #elibrary #instagramlive #instalive<br><br> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Remote event: Coding workshop for kids on Instagram Live",
                "en": "Remote event: Coding workshop for kids on Instagram Live"
            },
            "location_extra_info": {
                "fi": "Suurpelto Library Instagram Live",
                "en": "Suurpelto Library Instagram Live"
            },
            "short_description": {
                "fi": "Coding workshop for kids in Suurpelto kirjasto’s Instagram Live on Thursday April 2 at 12 pm-1 pm! Come learn how to code easily in Scratch’s programming interface online. Designed for 7-13 year olds. The coding workshop’s second part, Game Programming in Scratch, will take place on Thursday April 9 at 12 am-1 pm.",
                "en": "Coding workshop for kids in Suurpelto kirjasto’s Instagram Live on Thursday April 2 at 12 pm-1 pm! Come learn how to code easily in Scratch’s programming interface online. Designed for 7-13 year olds. The coding workshop’s second part, Game Programming in Scratch, will take place on Thursday April 9 at 12 am-1 pm."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209671/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209606",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@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": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64028,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:50.697567Z",
                    "last_modified_time": "2020-04-02T10:42:50.697586Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9EE2F712-88E8-4D86-B724-CC045C2C988B}/82050",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2020-04-02T10:42:52.405495Z",
            "last_modified_time": "2020-04-02T16:18:41.831574Z",
            "date_published": "2020-03-31T05:49:00Z",
            "start_time": "2020-04-09T07:00:00Z",
            "end_time": "2020-04-09T08: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<h3> <br> <br> Koodauspaja lapsille Suurpellon kirjaston <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Livessä </a><br><strong>to 2.4 klo 10-11!</strong><br><br> Koodauspajan toinen osa,<br> Peliohjelmointi Scratchilla Suurpellon kirjaston <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Livessä</a><br><strong>to 9.4 klo 10-11</strong></h3><p> <br> <br> Tule oppimaan ohjelmointia helposti Scratch-ohjelmointiympäristössä verkossa.<br><br> Paja sopii erityisesti aloittelevalle ohjelmoijalle ja on suunnattu n. 7 - 13 vuotiaille.<br><br> Scratch on ilmainen ohjelmointiympäristö, jonka tarkoitus on innostaa lapset luovaan oppimiseen. Lisää tietoa <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a><br><br><br><a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjasto/</a><br><br> #suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #elibrary #instagramlive #instalive<br><br><br><br><br><a href=\"https://www.helmet.fi/en-US/Libraries_and_services/Suurpelto_Library/Events/Remote_event_Coding_workshop_for_kids_on(209609)\">Coding workshop for kids </a>in Suurpelto kirjasto’s Instagram Live on <strong>Thursday April 2, at 12pm – 1 pm!</strong><br><br> The coding workshop’s second part, Game Programming in Scratch, will take place <strong>Thursday April 9 at, 12 pm-1 pm on InstagramLive. </strong><br><br> Come learn how to code easily in Scratch’s programming interface online. The workshop is suitable for those who have no programming experience and is designed for 7-13 year olds.<br><br> Scratch is a free programming environment designed to engage children in creative learning experiences. See <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a> for more information.<br><br> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: Koodauspaja lapsille Instagram Livessä"
            },
            "location_extra_info": {
                "fi": "Suurpellon kirjaston instagram"
            },
            "short_description": {
                "fi": "Koodauspaja lapsille Suurpellon kirjaston Instagram Livessä to 2.4 klo 10-11! Tule oppimaan ohjelmointia helposti Scratch-ohjelmointiympäristössä verkossa. Paja sopii erityisesti aloittelevalle ohjelmoijalle ja on suunnattu n. 7 - 13 vuotiaille. Koodauspajan toinen osa, Peliohjelmointi Scratchilla järjestään to 9.4 klo 10-11 Instagram Livessa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209606/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209797",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64033,
                    "license": "cc_by",
                    "created_time": "2020-04-02T13:18:16.959002Z",
                    "last_modified_time": "2020-04-02T13:18:16.959021Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5231A1EB-11A5-4DFC-82C4-F77DA6536AEE}/82118",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-04-02T13:18:17.483117Z",
            "last_modified_time": "2020-04-02T16:18:40.839773Z",
            "date_published": "2020-04-01T21:00:00Z",
            "start_time": "2020-04-08T06:00:00Z",
            "end_time": "2020-04-08T08: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Vantaan kaupunginkirjasto tarjoaa puhelinneuvontaa e-kirjaston käyttöön, digiasiointiin ja etätapahtumiin osallistumiseen liittyvissä asioissa ma-ke 6.-8.4. klo 9-11. Neuvontaa saat soittamalla numeroon 043 8250963 (pvm/mpm).</p><p>Yleisissä kirjastoasiointiin liittyvissä kysymyksissä voit soittaa Tikkurilan kirjaston asiakaspalvelunumerossa 043 824 8307 ma-pe klo 9-16<b>.</b></p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: neuvontaa ja digitukea puhelimitse"
            },
            "location_extra_info": {
                "fi": "Vantaan kaupunginkirjaston puhelinpalvelu"
            },
            "short_description": {
                "fi": "Vantaan kaupunginkirjasto tarjoaa puhelinneuvontaa e-kirjaston käyttöön, digiasiointiin ja etätapahtumiin osallistumiseen liittyvissä asioissa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209797/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209799",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64033,
                    "license": "cc_by",
                    "created_time": "2020-04-02T13:18:16.959002Z",
                    "last_modified_time": "2020-04-02T13:18:16.959021Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5231A1EB-11A5-4DFC-82C4-F77DA6536AEE}/82118",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-04-02T13:18:17.214518Z",
            "last_modified_time": "2020-04-02T16:18:39.913037Z",
            "date_published": "2020-04-01T21:00:00Z",
            "start_time": "2020-04-07T06:00:00Z",
            "end_time": "2020-04-07T08: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Vantaan kaupunginkirjasto tarjoaa puhelinneuvontaa e-kirjaston käyttöön, digiasiointiin ja etätapahtumiin osallistumiseen liittyvissä asioissa ma-ke 6.-8.4. klo 9-11. Neuvontaa saat soittamalla numeroon 043 8250963 (pvm/mpm).</p><p>Yleisissä kirjastoasiointiin liittyvissä kysymyksissä voit soittaa Tikkurilan kirjaston asiakaspalvelunumerossa 043 824 8307 ma-pe klo 9-16<b>.</b></p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: neuvontaa ja digitukea puhelimitse"
            },
            "location_extra_info": {
                "fi": "Vantaan kaupunginkirjaston puhelinpalvelu"
            },
            "short_description": {
                "fi": "Vantaan kaupunginkirjasto tarjoaa puhelinneuvontaa e-kirjaston käyttöön, digiasiointiin ja etätapahtumiin osallistumiseen liittyvissä asioissa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209799/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209798",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10691/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:23/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64033,
                    "license": "cc_by",
                    "created_time": "2020-04-02T13:18:16.959002Z",
                    "last_modified_time": "2020-04-02T13:18:16.959021Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{5231A1EB-11A5-4DFC-82C4-F77DA6536AEE}/82118",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64033/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-04-02T13:18:16.892112Z",
            "last_modified_time": "2020-04-02T16:18:38.991232Z",
            "date_published": "2020-04-01T21:00:00Z",
            "start_time": "2020-04-06T06:00:00Z",
            "end_time": "2020-04-06T08: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Vantaan kaupunginkirjasto tarjoaa puhelinneuvontaa e-kirjaston käyttöön, digiasiointiin ja etätapahtumiin osallistumiseen liittyvissä asioissa ma-ke 6.-8.4. klo 9-11. Neuvontaa saat soittamalla numeroon 043 8250963 (pvm/mpm).</p><p>Yleisissä kirjastoasiointiin liittyvissä kysymyksissä voit soittaa Tikkurilan kirjaston asiakaspalvelunumerossa 043 824 8307 ma-pe klo 9-16<b>.</b></p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: neuvontaa ja digitukea puhelimitse"
            },
            "location_extra_info": {
                "fi": "Vantaan kaupunginkirjaston puhelinpalvelu"
            },
            "short_description": {
                "fi": "Vantaan kaupunginkirjasto tarjoaa puhelinneuvontaa e-kirjaston käyttöön, digiasiointiin ja etätapahtumiin osallistumiseen liittyvissä asioissa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209798/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209703",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11687/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11767/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p556/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64030,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:51.556906Z",
                    "last_modified_time": "2020-04-02T10:42:51.556926Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{6CB94135-7BD6-405D-B53D-E75AECE36DAA}/82068",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64030/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-04-02T10:42:51.435219Z",
            "last_modified_time": "2020-04-02T16:18:38.529490Z",
            "date_published": "2020-03-30T21:00:00Z",
            "start_time": "2020-04-03T12:00:00Z",
            "end_time": "2020-04-03T13: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Pelin paikka LIVE palaa pyyntöjen mukaan tuotantotauolta kolmoskaudelleen hieman muuttuneena.</p><p>Nyt kun COVID-19-epidemia pakottaa meidät kaikki pysymään kotona, on aika parantaa pelilukutaitoa tutustumalla pelien klassikkoteoksiin! </p><p>Kuukausittaisesta viikottaiseksi<br> Kolmoskaudella Heikki nostaa käsittelyyn, pelaa ja avaa klassikon asemaa nauttivia PC-pelejä. Myös lähetystiheys tihenee samalla viikoittaiseksi ja lähetykset lyhenevät tunnin mittaisiksi. Tämä rytmi jatkuu ainakin niin kauan kuin COVID-19 aiheuttama pokkeustila pitää Suomemme kirjastot suljettuna. </p><p>Kolmoskauden Pelin paikka LIVEt lähetetään <br> JOKA PERJANTAI KLO 15-16 Pelin paikan Twitch-kanavalla <a href=\"https://www.twitch.tv/pelinpaikka\">https://www.twitch.tv/pelinpaikka</a> <br> Siis juuri sopivasti kun on aika ottaa tunti pelisivistyksen parantamiselle ennen viikonlopun viettoon orientoitumista. </p><p>Kausi aloitetaan komeasti todellisella klassikolla! Käsittelyssa Valven klassikko Half Life vuodelta 1998! Aivan perheen pienimmille ei Half Life sovi, joten kannattaa ottaa se huomioon kun katsotte lähetystä. </p><p>Lämpimästi siis tervetuloa mukaan tutustumaan pelien klassikoihin poikkeustilan aikana perjantaisin klo 15-16. </p><p>-HeikkiKir</p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: Pelin paikka LIVEn kolmas kausi starttaa!"
            },
            "location_extra_info": {
                "fi": "twitch.tv/pelinpaikka"
            },
            "short_description": {
                "fi": "Pelin paikka LIVEn kolmas kausi starttaa perjantaina 3.4."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209703/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209672",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@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": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64029,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:50.927081Z",
                    "last_modified_time": "2020-04-02T10:42:50.927101Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{CC227BB9-B9F5-4368-9BCB-86716AFA8B3E}/82051",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64029/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2020-04-02T10:42:50.845187Z",
            "last_modified_time": "2020-04-02T16:18:37.284403Z",
            "date_published": "2020-03-31T07:22:00Z",
            "start_time": "2020-04-02T09:00:00Z",
            "end_time": "2020-04-02T10: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<h3> <strong>Coding workshop for kids on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> Thursday April 2 at 12 pm – 1 pm!</h3><p> <br> Come learn how to code easily in Scratch’s programming interface online. The workshop is suitable for those who have no programming experience and is designed for 7-13 year olds.<br> Scratch is a free programming environment designed to engage children in creative learning experiences. See <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a> for more information.</p><h3> <br> <strong>The coding workshop’s second part, Game Programming in Scratch, will take place on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> On Thursday April 9 at 12 pm - 1 pm<br> </h3><p> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjasto/</a> <br> </p><p>#suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #elibrary #instagramlive #instalive<br><br> </p>",
                "en": "<h3> <strong>Coding workshop for kids on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> Thursday April 2 at 12 pm – 1 pm!</h3><p> <br> Come learn how to code easily in Scratch’s programming interface online. The workshop is suitable for those who have no programming experience and is designed for 7-13 year olds.<br> Scratch is a free programming environment designed to engage children in creative learning experiences. See <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a> for more information.</p><h3> <br> <strong>The coding workshop’s second part, Game Programming in Scratch, will take place on Suurpelto Library’s </strong> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live </a> <strong>on</strong> </h3><h3> <br> On Thursday April 9 at 12 pm - 1 pm<br> </h3><p> <a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjasto/</a> <br> </p><p>#suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #elibrary #instagramlive #instalive<br><br> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Remote event: Coding workshop for kids on Instagram Live",
                "en": "Remote event: Coding workshop for kids on Instagram Live"
            },
            "location_extra_info": {
                "fi": "Suurpelto Library Instagram Live",
                "en": "Suurpelto Library Instagram Live"
            },
            "short_description": {
                "fi": "Coding workshop for kids in Suurpelto kirjasto’s Instagram Live on Thursday April 2 at 12 pm-1 pm! Come learn how to code easily in Scratch’s programming interface online. Designed for 7-13 year olds. The coding workshop’s second part, Game Programming in Scratch, will take place on Thursday April 9 at 12 am-1 pm.",
                "en": "Coding workshop for kids in Suurpelto kirjasto’s Instagram Live on Thursday April 2 at 12 pm-1 pm! Come learn how to code easily in Scratch’s programming interface online. Designed for 7-13 year olds. The coding workshop’s second part, Game Programming in Scratch, will take place on Thursday April 9 at 12 am-1 pm."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209672/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209605",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@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": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64028,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:50.697567Z",
                    "last_modified_time": "2020-04-02T10:42:50.697586Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9EE2F712-88E8-4D86-B724-CC045C2C988B}/82050",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64028/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2020-04-02T10:42:50.546394Z",
            "last_modified_time": "2020-04-02T16:18:37.189699Z",
            "date_published": "2020-03-31T05:49:00Z",
            "start_time": "2020-04-02T07:00:00Z",
            "end_time": "2020-04-02T08: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<h3> <br> <br> Koodauspaja lapsille Suurpellon kirjaston <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Livessä </a><br><strong>to 2.4 klo 10-11!</strong><br><br> Koodauspajan toinen osa,<br> Peliohjelmointi Scratchilla Suurpellon kirjaston <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Livessä</a><br><strong>to 9.4 klo 10-11</strong></h3><p> <br> <br> Tule oppimaan ohjelmointia helposti Scratch-ohjelmointiympäristössä verkossa.<br><br> Paja sopii erityisesti aloittelevalle ohjelmoijalle ja on suunnattu n. 7 - 13 vuotiaille.<br><br> Scratch on ilmainen ohjelmointiympäristö, jonka tarkoitus on innostaa lapset luovaan oppimiseen. Lisää tietoa <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a><br><br><br><a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjasto/</a><br><br> #suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #elibrary #instagramlive #instalive<br><br><br><br><br><a href=\"https://www.helmet.fi/en-US/Libraries_and_services/Suurpelto_Library/Events/Remote_event_Coding_workshop_for_kids_on(209609)\">Coding workshop for kids </a>in Suurpelto kirjasto’s Instagram Live on <strong>Thursday April 2, at 12pm – 1 pm!</strong><br><br> The coding workshop’s second part, Game Programming in Scratch, will take place <strong>Thursday April 9 at, 12 pm-1 pm on InstagramLive. </strong><br><br> Come learn how to code easily in Scratch’s programming interface online. The workshop is suitable for those who have no programming experience and is designed for 7-13 year olds.<br><br> Scratch is a free programming environment designed to engage children in creative learning experiences. See <a href=\"https://scratch.mit.edu/about\">scratch.mit.edu/about</a> for more information.<br><br> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: Koodauspaja lapsille Instagram Livessä"
            },
            "location_extra_info": {
                "fi": "Suurpellon kirjaston instagram"
            },
            "short_description": {
                "fi": "Koodauspaja lapsille Suurpellon kirjaston Instagram Livessä to 2.4 klo 10-11! Tule oppimaan ohjelmointia helposti Scratch-ohjelmointiympäristössä verkossa. Paja sopii erityisesti aloittelevalle ohjelmoijalle ja on suunnattu n. 7 - 13 vuotiaille. Koodauspajan toinen osa, Peliohjelmointi Scratchilla järjestään to 9.4 klo 10-11 Instagram Livessa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209605/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209740",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10737/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64027,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:50.357884Z",
                    "last_modified_time": "2020-04-02T10:42:50.357904Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{01BAEC52-8308-4C31-B7FB-463B9EBD46BF}/82089",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64027/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-04-02T10:42:50.148356Z",
            "last_modified_time": "2020-04-02T16:18:37.044954Z",
            "date_published": "2020-04-01T09:45:00Z",
            "start_time": "2020-04-01T17:00:00Z",
            "end_time": "2020-04-01T18: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Kulttuuribunkkerin vierailijat -ohjelmassa kutsumme eri alojen asiantuntijoita puhumaan työstään, vastaamaan asiakkaiden kysymyksiin ja juttelemaan kiinnostuneiden kanssa. Kirjaston henkilökunta mahdollistaa tilaisuuden, moderoi keskustelua ja tarvittaessa haastattelee vieraita. Minkälaisia ihmisiä sinä haluaisit tulla kuulemaan ja keiltä haluaisit saada vastauksia kriittisiin kysymyksiin? Kerro meille toiveistasi, niin etsimme oikean asiantuntijan käsiimme.</p><p> <strong>Ensimmäinen vieraamme on Faro, seksuaalisuuden moninaisuutta tutkiva asiantuntija, joka saapuu puhumaan BDSM:stä ilmiönä ja tuomaan esiin siihen liittyviä käsitteitä helposti ymmärrettävässä muodossa. Faro on osallistunut THL:n Seksuaalikasvatuksen Tueksi oppaan kirjoittamiseen ja kirjoittanut seksuaalikasvatuksen etiikasta. Hänellä on kahdeksan vuoden kokemus BDSM-kulttuurista, pääosin dominoivassa roolissa.</strong> <br> </p><p>Kulttuuribunkkeri on keskustelukanava kulttuurin ystäville. Käytämme Discord-palvelinta kokoontuessamme keskustelemaan erilaisista ilmiöistä, kirjallisuudesta, elokuvista ja peleistä kirjaston henkilökunnan avustuksella.</p><p> <strong>Miten pääsen mukaan tapahtumaan?</strong> <br> Tutustu Kulttuuribunkkeriin ja liity mukaan! Liittymisohjeet löydät <strong><a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Vinkit/Kulttuuribunkkeri_keskustelukanava_Disco(209445)\">täältä</a> .</strong><br><br><br><em>Kuva: Faro</em></p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: Kulttuuribunkkerin vierailija"
            },
            "location_extra_info": {
                "fi": "Kulttuuribunkkeri -discord."
            },
            "short_description": {
                "fi": "Kulttuuribunkkerin vierailijat -ohjelmassa kutsumme eri alojen asiantuntijoita puhumaan työstään, vastaamaan asiakkaiden kysymyksiin ja juttelemaan kiinnostuneiden kanssa. Ensimmäinen vieraamme on Faro, seksuaalisuuden moninaisuutta tutkiva asiantuntija. Tapahtuma järjestetään Kulttuuribunkkeri -discordissa."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209740/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:209429",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@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": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64026,
                    "license": "cc_by",
                    "created_time": "2020-04-02T10:42:49.388562Z",
                    "last_modified_time": "2020-04-02T10:42:49.388583Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{C94BE43A-DC75-4E33-B855-1CE892AE24A7}/81972",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64026/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2020-04-02T10:42:48.490146Z",
            "last_modified_time": "2020-04-02T16:18:35.071011Z",
            "date_published": "2020-03-26T08:21:00Z",
            "start_time": "2020-03-27T11:00:00Z",
            "end_time": "2020-03-27T11: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,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p> <br> Hey kids and teens! Looking for something to read over the weekend? Suurpelto library will be presenting a book talk via <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live</a>, Friday 27.3 at 1 pm. Come join us! Book talk in English.<br><br> Suurpellon kirjasto vinkkaa 3 englanninkielistä lasten ja nuorten e-kirjaa saatavilla nyt Helmet-e-kirjastosta. Vinkkaus voit seurata <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Livessä</a> pe 27.3 klo 13. Nähdään Instagram Livessä! LiveChatin kieli on englanti.<br><br><br><br><a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjastoInstagram Live</a></p><p>#suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #coronabooktalk #elibrary #instagramlive #instalive<br><br> </p>",
                "en": "<p> <br> Hey kids and teens! Looking for something to read over the weekend? Suurpelto library will be presenting a book talk via <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Live</a>, Friday 27.3 at 1 pm. Come join us! Book talk in English.<br><br> Suurpellon kirjasto vinkkaa 3 englanninkielistä lasten ja nuorten e-kirjaa saatavilla nyt Helmet-e-kirjastosta. Vinkkaus voit seurata <a href=\"https://www.instagram.com/suurpellonkirjasto/\">Instagram Livessä</a> pe 27.3 klo 13. Nähdään Instagram Livessä! LiveChatin kieli on englanti.<br><br><br><br><a href=\"https://www.instagram.com/suurpellonkirjasto/\">https://www.instagram.com/suurpellonkirjastoInstagram Live</a></p><p>#suurpeltolibrary #suurpellonkirjasto #kirjastoespoo #coronabooktalk #elibrary #instagramlive #instalive<br><br> </p>"
            },
            "provider": null,
            "name": {
                "fi": "Etätapahtuma: Friday Book Talk",
                "en": "Remote event: Friday Book Talk"
            },
            "location_extra_info": {
                "fi": "Suurpellon kirjaston instagram",
                "en": "Suurpelto Library Instagram"
            },
            "short_description": {
                "fi": "Hey kids and teens! Looking for something to read over the weekend? Suurpelto Library will be presenting a book talk via Instagram Live, Friday 27.3 at 1 pm. Come join us! Book talk in English. https://www.instagram.com/suurpellonkirjasto",
                "en": "Hey kids and teens! Looking for something to read over the weekend? Suurpelto Library will be presenting a book talk via Instagram Live, Friday 27.3 at 1 pm. Come join us! Book talk in English. https://www.instagram.com/suurpellonkirjasto"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:209429/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afyts7a2yq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64023,
                    "license": "event_only",
                    "created_time": "2020-04-02T05:56:15.392295Z",
                    "last_modified_time": "2020-04-02T05:56:15.392317Z",
                    "name": "Suomenlinna",
                    "url": "http://api.hel.fi/linkedevents/media/images/IMG_9695_GcorEKR.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Helsinki Marketing/City of Helsinki (c) Riku Pihlanto",
                    "alt_text": "Suomenlinnan kivimuureja",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64023/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-02T06:02:46.865639Z",
            "last_modified_time": "2020-04-02T06:02:46.865670Z",
            "date_published": null,
            "start_time": "2019-12-31T22:01:00Z",
            "end_time": "2020-12-31T21:59: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://suomenlinna.fi/krepostsveaborg/index.html",
                "sv": "http://suomenlinna.fi/krepostsveaborg/swe/index.html",
                "en": "http://suomenlinna.fi/krepostsveaborg/eng/index.html"
            },
            "description": {
                "fi": "<p>Helsingin edustalla sijaitseva Suomenlinna eli Viapori on merilinnoitus, jota alettiin rakentaa Ruotsin vallan aikana vuonna 1748. </p><p>Sveaborgiksi nimetty linnoitus antautui toukokuussa 1808 Venäjän joukoille ja se siirtyi laivoineen ja linnoituslaitteineen Venäjän keisarikunnalle.</p><p>Venäläinen aika linnoituksessa kesti vuoteen 1918. Millainen oli venäläinen Viapori – Krepost Sveaborg?</p>",
                "sv": "<p>Sjöfästningen Sveaborg utanför Helsingfors började byggas år 1748 under den svenska tiden. </p><p>Fästningen, som fick namnet Sveaborg, kapitulerade i maj 1808 för de ryska trupperna och övergick med sina båtar och befästningsanläggningar till Ryska kejsardömet. </p><p>Den ryska tiden på fästningen varade till 1918. Hurdant var det ryska Sveaborg - Krepost Sveaborg?</p>",
                "en": "<p>Suomenlinna, an island off Helsinki, is a sea fortress. Construction began in 1748, when Finland was still part of Sweden. </p><p>Named Sveaborg or Viapori in Finnish, the fortress surrendered in May 1808 to Russian forces and was transferred, along with its ships and fortifications, to Imperial Russia. </p><p>The period of Russian control of the fortress lasted until 1918. What was Russian Sveaborg – Krepost Sveaborg – like?</p>"
            },
            "provider": {
                "fi": "Suomenlinna",
                "sv": "Sveaborg",
                "en": "Suomenlinna"
            },
            "name": {
                "fi": "Venäläinen Viapori virtuaalisesti",
                "sv": "Det ryska Sveaborg virtuellt",
                "en": "Russian Viapori virtually"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Helsingin edustalla sijaitseva Suomenlinna eli Viapori on merilinnoitus, jota alettiin rakentaa Ruotsin vallan aikana vuonna 1748. ",
                "sv": "Sjöfästningen Sveaborg utanför Helsingfors började byggas år 1748 under den svenska tiden. ",
                "en": "Suomenlinna, an island off Helsinki, is a sea fortress. Construction began in 1748, when Finland was still part of Sweden."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyts7a2yq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afysucu7mq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6421/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 44962,
                    "license": "event_only",
                    "created_time": "2018-06-12T11:08:07.423059Z",
                    "last_modified_time": "2018-06-12T11:08:07.423096Z",
                    "name": "Tosca",
                    "url": "http://api.hel.fi/linkedevents/media/images/5238-Tosca_12-11-01_137.jpg",
                    "cropping": "322,0,1598,1277",
                    "photographer_name": "Suomen kansallisooppera ja -baletti (c) Sakari Viika",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/44962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-30T06:04:31.476109Z",
            "last_modified_time": "2020-03-31T10:24:59.944722Z",
            "date_published": null,
            "start_time": "2020-04-02T16:00:00Z",
            "end_time": "2020-10-02T20:59: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/tosca-tallenne/",
                "sv": "https://oopperabaletti.fi/sv/stage24/",
                "en": "https://oopperabaletti.fi/en/stage24/"
            },
            "description": {
                "fi": "<p>Stage24 on Oopperan ja Baletin virtuaalinäyttämö, jossa voi katsoa ja kuunnella mm. esitystallenteita, trailereita ja tekijöiden haastatteluja.</p><p>Stage24-videopalvelussa julkaistaan joka maanantai ja torstai esitystallenteita menneiltä kausilta.</p><p>Tosca<br>2.4. klo 19</p><p>Rajatonta rakkautta, viiltävää vihaa, tunteita tulvivaa musiikkia – mitä muuta voi unohtumattomalta oopperaelämykseltä odottaa? </p><p>Giacomo Puccinin ooppera Tosca iskee suoraan sydämeen ja saa katsojansa rakastumaan oopperaan, riippumatta siitä onko teosta kuullut koskaan tai koko ikänsä.  Oopperan superklassikko tuo näyttämölle pahuudessaan ja hyvyydessään äärimmäisen vahvoja henkilöhahmoja. Kokemus ei taatusti jätä kylmäksi. </p><p>Suositellaan esityksiä yli 9-vuotiaille katsojille. </p><p>Tallenne on nähtävissä 2.10. saakka</p>",
                "sv": "<p>Stage24 är Operans och Balettens virtuella scen, där man kan se och lyssna på inspelade föreställningar när det passar dig bäst. Ny material offentliggörs varje måndag och torsdag.</p><p>Tosca<br>2.4. at 19.00</p><p>Musiken andas gränslös kärlek, ursinnigt hat, svallande känslor – vad mera kan man vänta sig av en oförglömlig operaupplevelse? </p><p>Giacomo Puccinis Tosca träffar en direkt i hjärtat och får en att älska denna opera oberoende om man aldrig hört den tidigare eller hört den hela livet. Rollfigurerna i denna operakonstens superklassiker är goda och onda, extremt starka karaktärer. Det är en upplevelse som garanterat inte lämnar en oberörd. </p><p>Åldersrekommendation över 9 år. </p><p>Kan ses överallt i världen fram till 2.10.2020</p>",
                "en": "<p>Stage24 is the virtual stage of the Opera and Ballet. Here you can watch and listen to performances whenever you like. New material will be uploaded every Monday and Thursday.</p><p>Tosca<br>2.4. at 19.00</p><p>Limitless love, scathing hatred, music bursting with emotion – what more can you expect from an unforgettable opera experience? Giacomo Puccini’s opera Tosca strikes right through the heart. It will make you fall in love with opera, regardless of whether you hear it for the first time or you’ve listened to it all your life. Tosca is the utmost opera classic. It fills the stage with strong characters from heroes to villains, delivering an experience that leaves no one cold. </p><p>Recommended for children over the age of 9.</p><p>Available worldwide until 2 October 2020.</p>"
            },
            "provider": {
                "fi": "Suomen kansallisooppera ja -baletti",
                "sv": "Finlands nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "name": {
                "fi": "Stage24: Tosca virtuaalisesti",
                "sv": "Stage24: Tosca virtuellt",
                "en": "Stage24: Tosca Virtually"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Stage24 on Oopperan ja Baletin virtuaalinäyttämö, jossa voi katsoa ja kuunnella mm. esitystallenteita, trailereita ja tekijöiden haastatteluja.",
                "sv": "Stage24 är Operans och Balettens virtuella scen, där man kan se och lyssna på inspelade föreställningar när det passar dig bäst. ",
                "en": "Stage24 is the virtual stage of the Opera and Ballet. Here you can watch and listen to performances whenever you like. New material will be uploaded"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afysucu7mq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afys62fl6q",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6421/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 44965,
                    "license": "event_only",
                    "created_time": "2018-06-12T11:43:13.584979Z",
                    "last_modified_time": "2018-06-12T11:43:13.585018Z",
                    "name": "Lentävä hollantilainen",
                    "url": "http://api.hel.fi/linkedevents/media/images/7214-Hollantilainen-15.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Suomen kansallisooppera ja -baletti",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/44965/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-31T07:05:21.156166Z",
            "last_modified_time": "2020-03-31T10:24:22.323945Z",
            "date_published": null,
            "start_time": "2020-03-30T16:00:03.348000Z",
            "end_time": "2020-09-30T20:59: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/lentava-hollantilainen-tallenne/",
                "sv": "https://oopperabaletti.fi/sv/stage24/den-flygande-hollandaren-inspelning/",
                "en": "https://oopperabaletti.fi/en/stage24/the-flying-dutchman-recording/"
            },
            "description": {
                "fi": "<p>Stage24 on Oopperan ja Baletin virtuaalinäyttämö, jossa voi katsoa ja kuunnella mm. esitystallenteita, trailereita ja tekijöiden haastatteluja.</p><p>Stage24-videopalvelussa julkaistaan joka maanantai ja torstai esitystallenteita menneiltä kausilta. </p><p>Lentävä hollantilainen<br>30.3. klo 19</p><p>Tarina kertoo kirotusta Hollantilaisesta, jonka pitää kiertää maailmaa ikuisesti – maihin hän saa tulla vain joka seitsemäs vuosi. Kirouksen voisi murtaa vain uskollisen naisen rakkaus. </p><p>Maineikas ohjaaja Kasper Holten on tehnyt uudenlaisen tulkinnan Richard Wagnerin suurteoksesta. Nyt kaupunkiympäristö ja kansainvälisen taidekaupan myrskyt kohtaavat Wagnerin vaikuttavan musiikin, jossa soi meren ja rakkauden voima. Esityksessä käytetään paikoin tavallista voimakkaampaa ja välkkyvää valoa. </p><p>Esitystä suositellaan yli 12-vuotiaille katsojille. </p><p>Katsottavissa maailmanlaajuisesti 30.9.2020 asti.</p>",
                "sv": "<p>Stage24 är Operans och Balettens virtuella scen, där man kan se och lyssna på inspelade föreställningar när det passar dig bäst. Ny material offentliggörs varje måndag och torsdag.</p><p>Den flygande holländaren<br>30.3. kl 19</p><p>Richard Wagners första mästerverk handlar om en holländsk kapten som dömts att segla världen runt i all evighet – blott vart sjunde år får han gå i land. Förbannelsen kan hävas endast av en trogen kvinnas kärlek. </p><p>Kasper Holten, en av nutidens mest berömda regissörer, sätter upp en nytolkning av Wagners storslagna mästerverk på Nationaloperan. I denna regi konfronteras en urban miljö och den internationella konsthandelns stormar med Wagners storslagna musik som ljuder av havets och kärlekens kraft. Vänligen observera att det ibland förekommer ovanligt starka och blinkande ljuseffekter. </p><p>Åldersrekommendation över 12 år.</p><p>Kan ses överallt i världen fram till 30.9.2020.</p>",
                "en": "<p>Stage24 is the virtual stage of the Opera and Ballet. Here you can watch and listen to performances whenever you like. New material will be uploaded every Monday and Thursday.</p><p>The Flying Dutchman / Der fliegende Holländer<br>30.3. at 19.00</p><p>Der fliegende Holländer, Richard Wagner’s first masterpiece, is the story of the Dutchman, a captain cursed to sail the seas of the world forever; he is only allowed to make landfall once every seven years. This curse can only be broken by the love of a faithful woman. </p><p>Kasper Holten, one of the most celebrated stage directors of today, brings a new interpretation to the FNO. In his production, an urban environment and the tempestuous world of the international art trade are underpinned by Wagner’s evocation of the power of love and the sea. Please note that the production occasionally includes powerful and flashing lights. </p><p>The performance is recommended to people over 12 years of age.</p><p>Available worldwide until 30 September 2020</p>"
            },
            "provider": {
                "fi": "Suomen kansallisooppera ja -baletti",
                "sv": "Finlands nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "name": {
                "fi": "Stage24: Lentävä hollantilainen virtuaalisesti",
                "sv": "Stage24: Den flygande holländaren virtuellt",
                "en": "Stage24: The Flying Dutchman Virtually"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Stage24 on Oopperan ja Baletin virtuaalinäyttämö, jossa voi katsoa ja kuunnella mm. esitystallenteita, trailereita ja tekijöiden haastatteluja.",
                "sv": "Stage24 är Operans och Balettens virtuella scen, där man kan se och lyssna på inspelade föreställningar när det passar dig bäst. ",
                "en": "Stage24 is the virtual stage of the Opera and Ballet. Here you can watch and listen to performances whenever you like. New material will be uploaded"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afys62fl6q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afys65j5ne",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10216/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 44979,
                    "license": "event_only",
                    "created_time": "2018-06-13T08:41:20.643869Z",
                    "last_modified_time": "2018-06-13T08:41:20.643898Z",
                    "name": "Pieni merenneito",
                    "url": "http://api.hel.fi/linkedevents/media/images/6686-20151021-1928.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Suomen kansallisooppera ja -baletti (c) Sakari Viika",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/44979/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2020-03-31T07:19:04.824051Z",
            "last_modified_time": "2020-03-31T10:23:23.523933Z",
            "date_published": null,
            "start_time": "2020-03-23T17:00:00Z",
            "end_time": "2020-09-26T20:59: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/pieni-merenneito-tallenne/",
                "sv": "https://oopperabaletti.fi/sv/stage24/den-lilla-sjojungfrun-inspelning/",
                "en": "https://oopperabaletti.fi/en/stage24/the-little-mermaid-recording/"
            },
            "description": {
                "fi": "<p>Pieni merenneito vie katsojansa mukanaan toiseen maailmaan. Hittibaletti on sekä näyttävä spektaakkeli että koskettava kertomus unelmien tavoittelusta ja rakkauden voimasta. </p><p>Näyttämö muuttuu 3D-efektien avulla lumoavaksi merenalaiseksi maisemaksi. Ei olekaan ihme, että tätä balettia on esitetty vain täysille katsomoille. </p><p>Suomen Kansallisooppera ja -baletti<br>Esityksiä suositellaan yli 7-vuotiaille katsojille.</p><p>Tallenne on nähtävissä maailmanlaajuisesti 26.9. 2020 saakka</p>",
                "sv": "<p>Den lilla sjöjungfrun för tittaren till en annan värld. Kenneth Greves succébalett är både ett imponerande spektakel och en gripande berättelse om drömmarnas mål och om kärlekens kraft. </p><p>Med 3D-effekter förvandlas scenen till ett förtrollande undervattenslandskap. Inget under att denna balett alltid visats för fulla hus. </p><p>Finlands Nationalopera och -balett<br>Kan ses fram till 26.9.2020</p><p>Åldersrekommendation över 7 år.</p>",
                "en": "<p>The Little Mermaid whisks the audience into a different world. Kenneth Greve’s hit production is both an enthralling spectacle and a touching story about the pursuit of dreams and the power of love. </p><p>3D effects transform the stage into a mesmerising underwater scene. It’s no wonder this ballet has only been performed to full houses. </p><p>Finnish National Opera and Ballet<br>Available worldwide until 26 September 2020.</p><p>Recommended for children over the age of 7. </p>"
            },
            "provider": {
                "fi": "Suomen kansallisooppera ja -baletti",
                "sv": "Finlands nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "name": {
                "fi": "Pieni merenneito virtuaalisesti",
                "sv": "Den lilla sjöjungfrun virtuellt",
                "en": "The Little Mermaid virtually"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Pieni merenneito vie katsojansa mukanaan toiseen maailmaan. Hittibaletti on sekä näyttävä spektaakkeli että koskettava kertomus unelmien tavoittelusta",
                "sv": "Den lilla sjöjungfrun för tittaren till en annan värld. Kenneth Greves succébalett är både ett imponerande spektakel och en gripande berättelse",
                "en": "The Little Mermaid whisks the audience into a different world. Kenneth Greve’s hit production is both an enthralling spectacle and a touching story "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afys65j5ne/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afys74xnmy",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p18434/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 63998,
                    "license": "event_only",
                    "created_time": "2020-03-31T09:07:04.659419Z",
                    "last_modified_time": "2020-03-31T09:07:04.659441Z",
                    "name": "Sibelius-Akatemian konsertti virtuaalisesti",
                    "url": "http://api.hel.fi/linkedevents/media/images/13-12-1022-4-1022167-main.jpg",
                    "cropping": "91,0,709,618",
                    "photographer_name": "Sibelius-Akatemia",
                    "alt_text": "Piirrettyjä soittimia",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/63998/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-31T09:36:21.881667Z",
            "last_modified_time": "2020-03-31T10:22:55.158774Z",
            "date_published": null,
            "start_time": "2020-03-06T22:01:00Z",
            "end_time": "2020-04-06T20:59: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,
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://areena.yle.fi/audio/1-50423565",
                "en": "https://areena.yle.fi/audio/1-50423565"
            },
            "description": {
                "fi": "<p>Sibelius-Akatemian puhallinorkesterin esittämä konsertti Musiikkitalossa on kuunneltavissa Yle Areenalla huhtikuulle saakka.</p><p>Ohjelman kehystää kolmekymppisenä Amerikkaan asettuneen aussisäveltäjän Percy Graingerin (1882–1961) intohimoinen puhallinmusiikin puolustuspuheenvuoro. Gum-suckers' March kuvaa Victorian osavaltion reippaita nuoria miehiä ”kumipuun” lehtiä suussa. </p><p>Kalevi Ahon Tristia (Murheita) on melankolinen vastapari Graingerin reippailulle. Aho loihtii yhtyeestään pehmeitä sävyjä teoksensa alussa, jotka myöhemmin hukkuvat puhallinten ja lyömäsoitinten purkauksiin.</p><p>Aulis Sallinen sävelsi Savonlinnan oopperajuhlille vuonna 1995 Palatsi-oopperan, jonka ironiset, parodiset ja viihteelliset sävyt jäivät elämään The Royal Northern College of Music -korkeakoulun tilaussävellyksessä.</p><p>Konsertin täydentää 1800-luvun alun oopperan ihmemiehen, Giocchino Rossinin, aikakauden muotisoittimelle, klarinetille kierrättämän materiaalin ilotulitus, jossa solisti voi eläytyä koloratuurisopraanon tai kastraatin mielenmaisemaan.</p><p>Bjarte Engeset, kapellimestari<br>Petros Andreadis, klarinetti<br>Sibelius-Akatemian puhallinorkesteri</p><p>Percy Grainger: Gum-suckers' March<br>Kalevi Aho: Tristia<br>Gioacchino Rossini: Johdanto, teema ja muunnelmia klarinetille ja orkesterille<br>Aulis Sallinen: Palatsirapsodia<br>Percy Grainger: Lincolnshire Posy</p><p>Musiikkitalo, Sonore-sali<br>28.2.</p><p>Tallenne on saatavissa Yle Areenassa 6.4.2020 saakka</p>",
                "en": "<p>The concert of the symphonic wind band of the Sibelius Academy, Academy Winds has been recorded to the Yle Areena.</p><p>Academy Winds performed last February at the Helsinki Music Centre with guest conductor Bjarte Engeset from Norway.</p><p>The concert begins and ends with works for large wind band by Percy Grainger, both of them highly diverse and imaginative in their scoring. Tristia by Kalevi Aho is a fantasy that explores the rarely heard soft and nuanced sound of a wind ensemble. Palatsi-rapsodia (Palace Rhapsody) by Aulis Sallinen takes in a wide range of moods, from sluggish melancholy to jazzy swing. </p><p>At the turn of the 19th century, many composers had ‘pet clarinettists’ for whom they wrote dazzling virtuoso works. The soloist for Introduction, Theme and Variations by Gioachino Rossini in this concert is to be selected by democratic audition from among all clarinettists at the Sibelius Academy. </p><p>Bjarte Engeset, conductor<br>Petros Andreadis, clarinet<br>Academy Winds</p><p>Percy Grainger: Gum-suckers' March<br>Kalevi Aho: Tristia<br>Gioacchino Rossini: Introduction, Theme and Variations for clarinettists and orchestra<br>Aulis Sallinen: Palace Rhapsody<br>Percy Grainger: Lincolnshire Posy</p><p>Helsinki Music Centre, Sonore Hall<br>28.2.</p><p>The concert is available on Yle Areena till 6.4.2020</p>"
            },
            "provider": {
                "fi": "Sibelius-Akatemia",
                "en": "Sibelius Academy"
            },
            "name": {
                "fi": "Sibelius-Akatemian konsertti virtuaalisesti",
                "en": "Sibelius Academy Concert virtually"
            },
            "location_extra_info": null,
            "short_description": {
                "fi": "Sibelius-Akatemian puhallinorkesterin esittämä konsertti Musiikkitalossa on kuunneltavissa Yle Areenalla huhtikuulle saakka.",
                "en": "The concert of the symphonic wind band of the Sibelius Academy, Academy Winds has been recorded to the Yle Areena."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afys74xnmy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}