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

{
    "meta": {
        "count": 1932,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&internet_based=true&page=75",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&internet_based=true&page=73"
    },
    "data": [
        {
            "id": "helsinki:af3c3me64i",
            "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:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/ylchoir/",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/ylchoir/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ylioppilaskunnan-laulajat-ylioppilaskunnan-laulajien-etaejoulukonsertti-keikalla-fi-livestriimi-13344567/",
                        "en": "https://www.lippu.fi/event/ylioppilaskunnan-laulajat-ylioppilaskunnan-laulajien-etaejoulukonsertti-keikalla-fi-livestriimi-13344567/"
                    },
                    "price": {
                        "fi": "12€",
                        "en": "12€"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 60619,
                    "license": "cc_by",
                    "created_time": "2019-11-29T14:08:58.402372Z",
                    "last_modified_time": "2019-11-29T14:08:58.402410Z",
                    "name": "Ylioppilaskunnan Laulajien perinteinen joulukonsertti",
                    "url": "http://api.hel.fi/linkedevents/media/images/YL_Joulu_2018_Olavi_Murto-0.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Ylioppilaskunnan Laulajat (c) Olavi Murto",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60619/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-04T12:18:38.457815Z",
            "last_modified_time": "2020-12-04T12:18:38.457857Z",
            "date_published": null,
            "start_time": "2020-12-18T17:00:00Z",
            "end_time": "2020-12-27T21: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,
            "description": {
                "fi": "<p>Ylioppilaskunnan Laulajien perinteiset joulukonsertit kuuluvat rakastetuimpiin jouluperinteisiin. </p><p>YL:n joulukonsertit ovat monille tärkeä osa joulunviettoa. Frakkipukuiset laulajat toivottavat yleisön tervetulleeksi jo ovella, ja arjen kiireet unohtuvat hämärässä kirkkosalissa.</p><p>Ohjelmistossa esitetään joululauluja perinteisin ja raikkain sovituksin.</p><p>YouTube<br>18.-27.12.</p><p>Liput 12€ Lippupisteestä</p>",
                "en": "<p>YL Male Voice Choir is arranging traditional Christmas concerts in atmospheric churches. The concerts are conducted by Pasi Hyökki.</p><p>YL’s concerts are not only about music sung by 60 men in white-ties. It is about taking a little moment to sit and relax in a church with your loved ones.</p><p>YouTube<br>18.-27.12.</p><p>Tickets 12€ from Lippupiste</p>"
            },
            "short_description": {
                "fi": "Ylioppilaskunnan Laulajien perinteiset joulukonsertit kuuluvat rakastetuimpiin jouluperinteisiin. ",
                "en": "YL Male Voice Choir is arranging traditional Christmas concerts in atmospheric churches. The concerts are conducted by Pasi Hyökki."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lippu.fi/event/ylioppilaskunnan-laulajat-ylioppilaskunnan-laulajien-etaejoulukonsertti-keikalla-fi-livestriimi-13344567/",
                "en": "https://www.lippu.fi/event/ylioppilaskunnan-laulajat-ylioppilaskunnan-laulajien-etaejoulukonsertti-keikalla-fi-livestriimi-13344567/"
            },
            "provider": {
                "fi": "YL",
                "en": "YL"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ylioppilaskunnan Laulajien etäjoulukonsertti",
                "en": "YL Male Voice Choir – Online Christmas Concert"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c3me64i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c3i2b4q",
            "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: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,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 65916,
                    "license": "event_only",
                    "created_time": "2020-08-07T08:22:37.250720Z",
                    "last_modified_time": "2020-08-07T08:22:37.250741Z",
                    "name": "Emmanuel Ceysson",
                    "url": "http://api.hel.fi/linkedevents/media/images/EC-5572_darioAcosta1920x108.jpg",
                    "cropping": "420,0,1500,1079",
                    "photographer_name": "Sibelius-Akatemia (c) Dario Acosta",
                    "alt_text": "Mies ja harppu kadulla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/65916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-04T12:04:02.694185Z",
            "last_modified_time": "2020-12-04T12:04:02.694231Z",
            "date_published": null,
            "start_time": "2020-12-03T17:00: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,
            "description": {
                "fi": "<p>Maailmankuulu huippuharpisti Emmanuel Ceysson konsertoi ensimmäistä kertaa Sibelius-Akatemiassa.</p><p>Ceysson heittää instrumenttiinsa assosioidut kliseet romukoppaan ja lumoaa kuulijansa energisellä soitollaan, joka esittelee harpun sointivärit kaikessa loistokkuudessaan.</p><p>YouTube<br>3.12. klo 19</p><p>Vapaa pääsy</p>",
                "sv": "<p>Den världsberömda toppharpisten Emmanuel Ceysson har konsert i Sibelius-Akademin för första gången.</p><p>Ceysson kastar de klichéer som är förknippade med hans instrument på soptippen och trollbinder sina åhörare med sitt energiska spel, som framför harpans klangfärger i hela deras prakt.</p><p>YouTube<br>3.12. kl 19</p><p>Fritt inträde</p>",
                "en": "<p>World-renowned harp player Emmanuel Ceysson is playing his first concert at Sibelius Academy.</p><p>Ceysson discards all the clichés associated with his instruments and mesmerizes his audience with energetic music that showcases the harp’s range in all its glory.</p><p>YouTube<br>3.12. at 19.00</p><p>Free entry</p>"
            },
            "short_description": {
                "fi": "Maailmankuulu huippuharpisti Emmanuel Ceysson konsertoi ensimmäistä kertaa Sibelius-Akatemiassa.",
                "sv": "Den världsberömda toppharpisten Emmanuel Ceysson har konsert i Sibelius-Akademin för första gången.",
                "en": "World-renowned harp player Emmanuel Ceysson is playing his first concert at Sibelius Academy. "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.uniarts.fi/tapahtumat/emmanuel-ceysson/",
                "sv": "https://www.uniarts.fi/tapahtumat/emmanuel-ceysson/",
                "en": "https://www.uniarts.fi/tapahtumat/emmanuel-ceysson/"
            },
            "provider": {
                "fi": "Sibelius-Akatemia",
                "sv": "Sibelius-Akademin",
                "en": "Sibelius Academy"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Emmanuel Ceysson",
                "sv": "Emmanuel Ceysson",
                "en": "Emmanuel Ceysson"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c3i2b4q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c3dfvgq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16560/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1250435585343672/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 47547,
                    "license": "event_only",
                    "created_time": "2018-10-04T11:58:34.034281Z",
                    "last_modified_time": "2023-12-08T07:46:21.660091Z",
                    "name": "Joulu",
                    "url": "http://api.hel.fi/linkedevents/media/images/20131226_1512_L1009729_3971_6mRw8yR.jpg",
                    "cropping": "412,0,1508,1096",
                    "photographer_name": "Kuvituskuva. Helsinki Partners (c) Jussi Hellsten",
                    "alt_text": "Jouluntähti",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/47547/?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-12-04T11:39:24.871553Z",
            "last_modified_time": "2020-12-04T11:39:24.871583Z",
            "date_published": null,
            "start_time": "2020-12-13T13:00:00Z",
            "end_time": "2021-01-06T21: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,
            "description": {
                "fi": "<p>Kauneimpia Joululauluja pääsee laulamaan tänä vuonna verkon välityksellä.</p><p>Mukana laulamassa laulajia kamarikuoro Barcarolasta Lauttasaaresta vahvistettuna innokkailla joululaulujen laulajilla sekä kanttorit Anna Pulli-Huomo ja Inka Kinnunen. Tilaisuuden juontaa Maikki Viljanen-Pihkala.</p><p>Tapahtumassa lauletaan seuraavat laulut Kauneimmat Joululaulut-vihkosta:</p><p>Arkihuolesi kaikki heitä<br>Me käymme joulun viettohon<br>En etsi valtaa loistoa<br>Joulukirkkoon<br>Tulkoon joulu<br>Enkeli taivaan<br>Heinillä härkien<br>Jouluyö, juhlayö</p><p>YouTube, Facebook<br>13.12. klo 15-16</p><p>Vapaa pääsy</p>"
            },
            "short_description": {
                "fi": "Kauneimpia Joululauluja pääsee laulamaan tänä vuonna verkon välityksellä."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.youtube.com/channel/UCWmBV8AcVCgG9f9-PvRXtyg"
            },
            "provider": {
                "fi": "Helsingin seurakunnat"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kauneimmat joululaulut verkossa"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c3dfvgq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c3bgkzu",
            "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:p16560/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/750397255816673",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/vkdl_konsertit/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67997,
                    "license": "event_only",
                    "created_time": "2020-11-10T12:11:37.952483Z",
                    "last_modified_time": "2020-11-10T12:11:37.952510Z",
                    "name": "Satakieli Singers",
                    "url": "http://api.hel.fi/linkedevents/media/images/_----myhelsinki-1.jpg",
                    "cropping": "379,0,1541,1162",
                    "photographer_name": "Art Jazz Helsinki (c) Vladimir Ichtchenko",
                    "alt_text": "Muusikoita esiintymässä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67997/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-04T11:30:46.115397Z",
            "last_modified_time": "2020-12-04T11:30:46.115426Z",
            "date_published": null,
            "start_time": "2020-12-05T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Satakieli Singers: Joululauluja maailmalta</p><p>Illan aikana kuullaan talvi- ja joululauluja eri maista, mm.  Ukrainasta, Valkovenäjältä, Englannisa, Puolasta, lasten joululauluja Venäjältä ja Slovakiasta sekä espanjalaisia ja tšekkiläisiä kehtolauluja.</p><p>Satakieli Singers:<br>Vladimir Ichtchenko - kitara, laulu<br>Jana Batserikova – laulu<br>Tanja Vaskelainen - laulu, lyömäsoittimet<br>Sergey Ichtchenko - lyömäsoittimet, puhallinsoittimet<br>Christoffer von Bonsdorff – harmonikka</p><p>Hvän Paimenen kirkko ja YouTube<br>5.12. klo 19</p><p>Hyvän Paimenen kirkon konsertti striimataan, joten konserttia voi seurata myös kotoa käsin.</p>",
                "en": "<p>Carols Around the World. Christmas and winter songs in 8 languages.</p><p>During the evening, winter and Christmas songs will be heard from different countries: Ukrainian and Belarusian kolyada (Christmas songs), children's Christmas carols from Russia and Slovakia, Spanish and Czech lullabies, Carols from England and Poland.</p><p>Satakieli Singers:<br>Vladimir Ichtchenko - guitar, vocals<br>Jana Batserikova - singing<br>Tanja Vaskelainen - vocals percussion<br>Sergey Ichtchenko - percussion, wind instruments<br>Christoffer von Bonsdorff - accordion</p><p>Church of The Good Shepherd and YouTube<br>5.12. at 19.00</p><p>The concert of the Church of The Good Shepherd is streamed, so you can also watch the concert from home.<br></p>"
            },
            "short_description": {
                "fi": "Satakieli Singers: Joululauluja maailmalta",
                "en": "Carols Around the World. Christmas and winter songs in 8 languages."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://youtu.be/QedEsRFw4zs",
                "en": "https://youtu.be/QedEsRFw4zs"
            },
            "provider": {
                "fi": "Venäläinen kulttuuridemokraattinen liitto ry",
                "en": "Venäläinen kulttuuridemokraattinen liitto ry"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Satakieli Singers: Joululauluja maailmalta",
                "en": "Satakieli Singers"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c3bgkzu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c23lyea",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22193/?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:p4804/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "http://www.facebook.com/tanssiteatteri.hurjaruuth",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68475,
                    "license": "event_only",
                    "created_time": "2020-12-04T11:04:27.943024Z",
                    "last_modified_time": "2020-12-04T11:04:27.943091Z",
                    "name": "Talvisirkus: Joulukalenteri verkossa",
                    "url": "http://api.hel.fi/linkedevents/media/images/Joulukalenteri_LuisSartoriD.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Tanssiteatteri Hurjaruuth (c) Luis Sartori Do Vale",
                    "alt_text": "Talvisirkuksen esiintyjiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68475/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "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-12-04T11:05:17.626335Z",
            "last_modified_time": "2020-12-04T11:05:17.626363Z",
            "date_published": null,
            "start_time": "2020-11-30T22:01:00Z",
            "end_time": "2020-12-24T21: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,
            "description": {
                "fi": "<p>Talvisirkus Vauhdin esiintyjät päättivät tehdä koronatauon aikana joulukalenterin verkkoon.<br> <br>Mitä tapahtuu hiljaisessa Kattilahallissa näiden viikkojen aikana, kun Talvisirkus Vauhdin näytökset ovat koronatilanteen vuoksi katkolla? Se  selviää Talvisirkuksen esiintyjien joulukalenterista.</p><p>Pyörällä päästään! Talvisirkus Vauhdin kyydissä liu’utaan suurkaupungin vilinään ja salaperäisille sivukujille. <br>Urbaani katukuva vaihtuu välillä talvisiin maisemiin kun matka taittuu vauhdilla – fillareilla, rullaluistimilla, leijulaudoilla tai rattikelkalla…</p><p>Elävä musiikki, videoprojisoinnit, taitavat sirkusesiintyjät ja henkeäsalpaava visuaalisuus tekevät Talvisirkuksesta ikimuistoisen.</p><p>YouTube, Facebook<br>1.-24.12.</p>",
                "en": "<p>The performers of the Winter Circus have made a virtual advent calendar during their break in perfomances due to the covid-19 pandemic.</p><p>This year, the theme  of the Winter Circus is Speed focusing on the bustle of the big cities and mysterious alleys.</p><p>The urban streets change to wintry landscapes when the story moves on at high speed - by bicycles, roller skates, hoverboards or bobsleighs...</p><p>Combining circus, dance and video art, Winter Circus is a warm-spirited contemporary circus show which is suited for people of all ages. </p><p>YouTube, Facebook<br>1.-24.12.</p>"
            },
            "short_description": {
                "fi": "Talvisirkus Vauhdin esiintyjät päättivät tehdä koronatauon aikana joulukalenterin verkkoon.",
                "en": "The performers of the Winter Circus have made a virtual advent calendar during their break in perfomances due to the covid-19 pandemic."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.youtube.com/user/hurjaruuth",
                "en": "http://www.youtube.com/user/hurjaruuth"
            },
            "provider": {
                "fi": "Tanssiteatteri Hurjaruuth",
                "en": "Dance Theatre Hurjaruuth"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Talvisirkus: Joulukalenteri verkossa",
                "en": "Winter Circus: Advent Calendar Online"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c23lyea/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c2uotkq",
            "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: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"
                },
                {
                    "@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,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 57321,
                    "license": "event_only",
                    "created_time": "2019-07-31T07:57:57.214986Z",
                    "last_modified_time": "2019-07-31T07:57:57.215007Z",
                    "name": "Reininkulta",
                    "url": "http://api.hel.fi/linkedevents/media/images/Ring_Logo_Black.jpg",
                    "cropping": "491,0,1429,938",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/57321/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-04T10:35:05.978296Z",
            "last_modified_time": "2020-12-04T10:35:05.978342Z",
            "date_published": null,
            "start_time": "2019-09-08T21:01:00Z",
            "end_time": "2022-09-18T20: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,
            "description": {
                "fi": "<p>Nibelungin sormus -sarjan ensimmäinen osa Reininkulta esittelee keskeiset hahmot ja teemat, jotka kehittyvät saagan edetessä. Säveltäjä Richard Wagnerin mukaan Reininkulta on ”näyttämöjuhlan aatto”.</p><p>Nibelungin sormus eli Ring on Richard Wagnerin neliosainen oopperakokonaisuus ja oopperan historian suurimpia teoksia. Myyttiseen maailmaan sijoittuva tetralogia kertoo rakkaudesta, vihasta, vallasta ja ahneudesta. </p><p>Alberich varastaa Reinvirran vartioidun kullan, kiroaa rakkauden ja takoo sormuksen, joka tuo kantajalleen rajattoman vallan. Mutta valtaa janoaa myös ylijumala Wotan.</p><p>Antiikin jumalten maailmaan viittaava Reininkulta on täynnä mustaa komediaa ja kepeyttä. Se nauraa hahmojensa turhamaisuudelle  ja hölmölle naiiviudelle, jotka sysäävät liikkeelle peruuttamattoman tapahtumaketjun.</p><p>Stage24</p><p>Esitys on saksankielinen, kesto 2 h 51 min<br>Esityksiä suositellaan yli 12-vuotiaille katsojille</p>",
                "sv": "<p>Rhenguldet presenterar de centrala gestalterna och teman, som utvecklas senare i sagan. Enligt Wagner är Rhenguldet en ”förafton” till ett tre dagars scenfestspel.</p><p>Nibelungens ring eller bara Ringen är en operatetralogi i fyra delar av Richard Wagner. Den fick sin premiär i Bayreuth år 1876. Verket var genast vid sin tillkomst någonting oerhört som saknar motstycke i hela den västerländska konsthistorien. Ringen bygger på forngermanska och fornnordiska sagor. I fyra operor rör man sig i en mytisk värld men med teman som har kontaktytor med nutiden.</p><p>Alberich stjäl rhenguldet som vaktas Rhendöttrarna. Han förbannar kärleken och smider en ring av guldet. Den ringen ger herraväldet över världen. Men även huvudguden Wotan är ute efter absolut makt.</p><p>Stage24</p><p>Framförs på tyska, längd 2 h 51 min<br>Åldersrekommendation över 12 år</p>",
                "en": "<p>Das Rheingold introduces the central characters and themes, which are developed further as the story continues. According to Wagner, Das Rheingold was “the preliminary evening of a stage festival play”.</p><p>Der Ring des Nibelungen (The Ring of the Nibelungs), also called the Ring cycle, is an opera tetralogy composed by Richard Wagner. Ever since this extraordinary work saw its world premiere in Bayreuth in 1876, it’s been counted among the greatest artistic achievements of Western culture. The Ring is based on ancient German and Nordic tales. The four operas are set in a mythical world, but their themes are equally pertinent in the modern day.</p><p>Alberich steals the gold guarded by the Rheinmaidens from the river Rhein. He renounces love and forges the gold into a ring, which will give its bearer unlimited power. Wotan, the ruler of the gods, however, also longs for absolute power.</p><p>Stage24</p><p>Performed in German, duration approx. 2 h 51 min<br>Recommended for children over the age of 12.</p>"
            },
            "short_description": {
                "fi": "Nibelungin sormus -sarjan ensimmäinen osa Reininkulta esittelee keskeiset hahmot ja teemat, jotka kehittyvät saagan edetessä. ",
                "sv": "Rhenguldet presenterar de centrala gestalterna och teman, som utvecklas senare i sagan. Enligt Wagner är Rhenguldet en ”förafton”",
                "en": "Das Rheingold introduces the central characters and themes, which are developed further as the story continues."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/reininkulta/",
                "sv": "https://oopperabaletti.fi/sv/stage24/rhenguldet-inspelning/",
                "en": "https://oopperabaletti.fi/en/stage24/das-rheingold-recording/"
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Reininkulta virtuaalisesti",
                "sv": "Rhenguldet virtuellt",
                "en": "Das Rheingold virtually"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c2uotkq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c2t4vqm",
            "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: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"
                },
                {
                    "@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,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64084,
                    "license": "event_only",
                    "created_time": "2020-04-15T09:30:28.993474Z",
                    "last_modified_time": "2020-04-15T09:30:28.993497Z",
                    "name": "Jää",
                    "url": "http://api.hel.fi/linkedevents/media/images/C79A8621_tAQ02dh.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Stefan Bremer",
                    "alt_text": "Nainen lumisessa maisemassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64084/?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": [],
            "created_time": "2020-12-04T10:32:39.066892Z",
            "last_modified_time": "2020-12-04T10:32:39.066938Z",
            "date_published": null,
            "start_time": "2020-04-16T16:00:00Z",
            "end_time": "2021-01-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,
            "description": {
                "fi": "<p>Ulla-Lena Lundbergin romaani Jää sai Finlandia-palkinnon 2012. Siitä on tullut yksi vuosikymmenen rakastetuimpia romaaneja, jota on myyty Suomessa lähes 150 000 kappaletta.  </p><p>Osittain Lundbergin oman perheen elämään Kökarilla perustuva kirja on kiinnostanut teattereita, mutta vasta Kansallisooppera sai luvan näyttämösovitukseen. </p><p>Libretossa ovat mukana laajan romaanin olennaiset tapahtumat ja sen unohtumattomat henkilöt. Saariston vuodenajat ja jään uhka soivat musiikissa. </p><p>Stage24 </p><p>Esitetään suomeksi.<br>Esitystä suositellaan yli 9-vuotiaille katsojille. </p>",
                "sv": "<p>Ulla-Lena Lundbergs roman Is fick Finlandiapriset 2012. Den har blivit en av årtiondets mest älskade romaner och närmare 150 000 exemplar har sålts i Finland. </p><p>Boken bygger delvis på Lundbergs egen familj och deras liv på Kökar. Den har intresserat olika teatrar men Nationaloperan var den första som fick tillstånd att adaptera den för scenen. </p><p>Librettot har fått med de väsentliga händelserna i den omfattande romanen och dess oförglömliga gestalter. Skärgårdens årstider och den hotfulla isen klingar i musiken. </p><p>Stage24</p><p>Framförs på finska.<br>Åldersrekommendation över 9 år. </p>",
                "en": "<p>Ulla-Lena Lundberg’s novel Ice was awarded the Finlandia Prize, Finland’s most prestigious literary award, in 2012. With domestic sales of almost 150 000 copies, it has become one of the most cherished Finnish novels of the decade. </p><p>Partly based on the life on Lundberg’s own family on the isolated island of Kökar, Ice has attracted much interest from theatres, but the Finnish National Opera was the first to get permission to adapt it for the stage. </p><p>The libretto follows the key events and characters of the rich novel, with music that rings with the changing seasons and the ever-present threat of ice. </p><p>Stage24</p><p>Performed in Finnish.<br>Recommended for children over the age of 9.</p>"
            },
            "short_description": {
                "fi": "Ulla-Lena Lundbergin romaani Jää sai Finlandia-palkinnon 2012. Siitä on tullut yksi vuosikymmenen rakastetuimpia romaaneja, jota on myyty Suomessa",
                "sv": "Ulla-Lena Lundbergs roman Is fick Finlandiapriset 2012. Den har blivit en av årtiondets mest älskade romaner och närmare 150 000 exemplar har sålts ",
                "en": "Ulla-Lena Lundberg’s novel Ice was awarded the Finlandia Prize, Finland’s most prestigious literary award, in 2012. With domestic sales of almost"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/jaa-tallenne/",
                "sv": "https://oopperabaletti.fi/sv/stage24/is-inspelning/",
                "en": "https://oopperabaletti.fi/en/stage24/ice-recording/"
            },
            "provider": {
                "fi": "Suomen kansallisooppera ja -baletti",
                "sv": "Finlands nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jää virtuaalisesti",
                "sv": "Is virtuellt",
                "en": "Ice virtually"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c2t4vqm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c2r3jnu",
            "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"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 57338,
                    "license": "event_only",
                    "created_time": "2019-07-31T13:19:07.436090Z",
                    "last_modified_time": "2019-07-31T13:19:07.436113Z",
                    "name": "Lumikuningatar",
                    "url": "http://api.hel.fi/linkedevents/media/images/5157-Lumi-213.jpg",
                    "cropping": "239,0,1681,1442",
                    "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/57338/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "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-12-04T10:23:43.502701Z",
            "last_modified_time": "2020-12-04T10:28:44.608919Z",
            "date_published": null,
            "start_time": "2019-12-19T17:00:00Z",
            "end_time": "2020-12-18T21: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,
            "description": {
                "fi": "<p>Lumikuningatar kertoo sadan vuoden takaisessa Helsingissä eläneiden kahden lapsen, Kain ja Kertun, seikkailuista taikavoimien temmellyksessä ja siitä, kuinka paljon urheutta vaaditaan, jotta he selviytyvät eteen tulevista elämän karikoista. </p><p>Kertun isoäiti on ostanut Lapin matkallaan markkinoilta kauniin vanhan peilin tietämättä että siihen kätkeytyy Lumikuningattaren taikavoima.</p><p>Stage24<br>Esityskieli suomi, kesto 1 h 48 min</p><p>Perheille sopivaa balettia suositellaan yli 6-vuotiaille, sillä muutamat kohtaukset saattavat tuntua pelottavilta. </p>",
                "sv": "<p>I Snödrottningen träffar man två barn, Kai och Kerttu, som levde i Helsingfors för ett hundra år sedan. Det handlar om deras äventyr med trollkrafter och om hur mycket mod det krävs för att klara av livets kommande blindskär. </p><p>Kerttus mormor har på en resa i Lappland på en marknad köpt en vacker gammal spegel omedveten om att den inom sig döljer Snödrottningens trollkraft.</p><p>Stage24</p><p>Framförs på finska, längd 1 h 48 min</p><p>Baletten lämpar sig för hela familjen. Åldersrekommendationen är över 6 år eftersom några scener kan kännas skrämmande för de allra minsta tittarna.</p>",
                "en": "<p>From Market Square to the wilds of Lapland<br>The Snow Queen recounts the magical adventures of two children living in Helsinki a century ago, Kai and Kerttu. The story shows how much courage they need to cope with what life throws at them. </p><p>Kerttu’s grandmother has bought a beautiful old mirror at a market on a trip to Lapland without knowing that it houses the magical power of the Snow Queen.</p><p>Stage24</p><p>Performed in Finnish, duration 1 h 48 min</p><p>The ballet is suitable for the whole family but recommended for children over the age of 6, as there are some scenes that may frighten very small children. </p>"
            },
            "short_description": {
                "fi": "Lumikuningatar kertoo sadan vuoden takaisessa Helsingissä eläneiden kahden lapsen, Kain ja Kertun, seikkailuista ",
                "sv": "I Snödrottningen träffar man två barn, Kai och Kerttu, som levde i Helsingfors för ett hundra år sedan. ",
                "en": "From Market Square to the wilds of Lapland\nThe Snow Queen recounts the magical adventures of two children living in Helsinki a century ago, "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/lumikuningatar-tallenne/",
                "sv": "https://oopperabaletti.fi/sv/stage24/snodrottningen-inspelning/",
                "en": "https://oopperabaletti.fi/en/stage24/the-snow-queen-recording/"
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lumikuningatar virtuaalisesti",
                "sv": "Snödrottningen virtuellt",
                "en": "The Snow Queen virtually"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c2r3jnu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3c2s2gye",
            "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,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64164,
                    "license": "event_only",
                    "created_time": "2020-04-24T10:19:04.328382Z",
                    "last_modified_time": "2020-04-24T10:19:04.328404Z",
                    "name": "Trubaduuri",
                    "url": "http://api.hel.fi/linkedevents/media/images/C79A9538--kopio.jpg",
                    "cropping": "303,0,1617,1314",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c)Stefan Bremer",
                    "alt_text": "Joukkokohtaus oopperassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-04T10:27:56.764512Z",
            "last_modified_time": "2020-12-04T10:27:56.764540Z",
            "date_published": null,
            "start_time": "2020-09-24T21:01:00Z",
            "end_time": "2021-03-23T21: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,
            "description": {
                "fi": "<p>Giuseppe Verdin ooppera kertoo erilleen joutuneista ja vihollisiksi ajautuneista veljeksistä sisällissodan pauhussa. </p><p>Azucena on siepannut toisen Lunan kreivin pojista ja aikonut surmata hänet, mutta onkin ottanut hänet kasvatikseen ja tappanut oman poikansa. </p><p>Manrico ja Lunan kreivi ovat vihollisia eivätkä tiedä olevansa veljeksiä. Yhteistä heille on vain yksi asia: rakkaus kauniiseen Leonoraan. Sota johtaa väistämättömään tragediaan, jonka lopuksi kreivi teloituttaa Manricon. Silloin Azucena kertoo totuuden: kreivi on surmannut oman veljensä. </p><p>Traagisen tarinan käänteet ja henkilöt soivat musiikissa, joka pulppuaa toinen toistaan sytyttävämpiä melodioita.</p><p>Stage24, Suomen Kansallisooppera ja -baletti</p><p>Ikäsuositus yli 12-vuotiaille katsojille. Esitys sisältää kohtauksia, jotka voivat järkyttää herkimpiä katsojia.</p>",
                "sv": "<p>Giuseppe Verdis opera handlar om två bröder som under pågående inbördeskrig glidit ifrån varandra och blivit fiender. </p><p>För tonsättaren erbjöd händelserna inspirerande vändningar och starka personligheter. Med sina smittande melodier och spännande rytmer blev Trubaduren i tiden världens mest populära opera. </p><p>Stage24, Finlands Nationalopera och -balett</p><p>Åldersrekommendation över 12 år. Känsliga åskådare kan bli illa berörda av vissa scener i föreställningen.</p>",
                "en": "<p>Giuseppe Verdi’s opera is a story of brothers torn apart and turned enemies by civil war. The tragic events and characters are mirrored by the music, which flows in an endless cavalcade of affecting melodies.</p><p>Il trovatore was the world's most popular opera in its day, thanks to its catchy tunes and infectious rhythms. </p><p>Stage24, Finnish National Opera and Ballet</p><p>Recommended for children over the age of 12. Some scenes may upset the most sensitive members of the audience.</p>"
            },
            "short_description": {
                "fi": "Giuseppe Verdin ooppera kertoo erilleen joutuneista ja vihollisiksi ajautuneista veljeksistä sisällissodan pauhussa. ",
                "sv": "Giuseppe Verdis opera handlar om två bröder som under pågående inbördeskrig glidit ifrån varandra och blivit fiender. ",
                "en": "Giuseppe Verdi’s opera is a story of brothers torn apart and turned enemies by civil war."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/trubaduuri-tallenne/",
                "sv": "https://oopperabaletti.fi/stage24/trubaduuri-tallenne/",
                "en": "https://oopperabaletti.fi/stage24/trubaduuri-tallenne/"
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Trubaduuri virtuaalisesti",
                "sv": "Trubaduren virtuellt",
                "en": "Il Trovatore virtually"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3c2s2gye/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3cq3ymbq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13980/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p28052/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 68458,
                    "license": "event_only",
                    "created_time": "2020-12-03T11:44:05.723566Z",
                    "last_modified_time": "2020-12-03T11:44:05.723601Z",
                    "name": "Ideakuva Kannelmäen Sitratorin tulevaisuudesta. (Arkkitehtitoimisto NOAN / Kannelmäen lähikeskukset - Visio 2035)",
                    "url": "http://api.hel.fi/linkedevents/media/images/tapahtumakalenteri-1200-628-uutta-lansihelsinkia-2021-tammikuu__kopio.jpg",
                    "cropping": "286,0,914,628",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on Kannelmäen Sitratorin tulevaisuuden visiointia. Tapahtuman markkinointikuva.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68458/?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-12-03T11:48:54.951190Z",
            "last_modified_time": "2020-12-03T11:51:27.290720Z",
            "date_published": null,
            "start_time": "2021-01-27T15:30:00Z",
            "end_time": "2021-01-27T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tule kuulemaan ja keskustelemaan kaupunkiympäristöön liittyvistä ajankohtaisista hankkeista ja suunnitelmista. Illan aikana esittelemme monipuolisesti sitä, kuinka Länsi-Helsinki muuttuu uusien asuin- ja liikerakennusten myötä ja miten raideyhteydet, kadut sekä viheralueet alueella kohenevat. </p><p>Voit kysyä ja keskustella illan aiheista tilaisuuden viestiseinällä, jossa asiantuntijat ovat vastaamassa kysymyksiisi reaaliajassa.</p><p>Illan aikana esillä ovat muun muassa seuraavat aiheet: <br>- Huopalahdentie ympäristöineen, Talin liikuntapuisto, Munkkivuoren ostari  <br>- Länsi-Haaga ja Haagan ympyrä sekä Vihdintie ja sähköasema<br>- Liito-orava -selvitys ja metsäverkosto <br>- Kuninkaantammen rakentamisen tilanne<br>- Hämeenlinnanväylän parantaminen Kannelmäen ja Kaivokselan välillä ja Kuninkaantammen eritasoliittymä<br>- Malminkartanon suunnitteluperiaatteet<br>- Sitratori, Kannelmäen asemanseutu ja Malminkartanon aseman eteläpuolen aukiot<br>- Lassila, Hopeatien ympäristö<br>- Etelä-Haaga, Steniuksen kenttä<br>- Raide-Jokeri Länsi-Helsingin alueella<br>- Kaupungin oma asuntotuotanto Länsi-Helsingissä<br>- Taloyhtiöklubeista vauhtia energiatehokkuuden parantamiseen<br>- Miten voit seurata ja vaikuttaa kaupunkiympäristön asioihin</p><p>Illan liittymislinkki julkaistaan tilaisuuden verkkosivulla, joka löytyy linkistä ja sivulta hel.fi/asukastilaisuudet. Linkki jaetaan myös Face book -tapahtuman tiedoissa. Tilaisuuden tarkempi ohjelma ja muuta tietoa illasta löytyy tilaisuuden verkkosivulta.</p><p>Järjestämme Uutta Länsi-Helsinkiä -tilaisuuden verkkotilaisuutena koronatilanteen takia.</p>"
            },
            "short_description": {
                "fi": "Osallistu omalta kotisohvaltasi Länsi-Helsingin tulevaisuuteen - miten kaupunkiympäristö muuttuu?"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.hel.fi/helsinki/fi/asuminen-ja-ymparisto/kaavoitus/ajankohtaiset-suunnitelmat/tilaisuudet/uutta-lansihelsinkia"
            },
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Uutta Länsi-Helsinkiä"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3cq3ymbq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3ajeqgfi",
            "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:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3227/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8268/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/1367772003561897",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u541000",
            "sub_events": [],
            "images": [
                {
                    "id": 68337,
                    "license": "event_only",
                    "created_time": "2020-11-26T12:23:04.538498Z",
                    "last_modified_time": "2020-11-26T12:23:04.538544Z",
                    "name": "Verkkotilaisuus Länsiulapanniemen rantareitin puistosuunnitelmasta",
                    "url": "http://api.hel.fi/linkedevents/media/images/lansiulappa-1200_800_b7dbeej.jpg",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "Helsingin kaupunkiympäristön toimiala",
                    "alt_text": "Verkkotilaisuus Länsiulapanniemen rantareitin puistosuunnitelmasta",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u541000",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68337/?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-11-26T12:40:47.427219Z",
            "last_modified_time": "2020-12-03T11:21:23.621223Z",
            "date_published": null,
            "start_time": "2020-12-10T15:00:00Z",
            "end_time": "2020-12-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Klikkaa itsesi Länsiulapanniemen rantareitin puistosuunnitelman <a href=\"https://bit.ly/3qpx71K\">verkkotilaisuuteen tästä linkistä</a> (linkki vie Microsoft Teams live-tapahtumaan). </p><p>Kello 17 alkavassa iltatilaisuudessa voit kysyä ja kommentoida kommentointipalstalla. Osallistuaksesi sinun ei tarvitse ladata laitteeseesi uusia sovelluksia, sillä tilaisuuteen osallistutaan verkkoselaimen välityksellä.</p><p>Puistosuunnitelman tavoitteena on ohjata kulkua yhdelle pääreitille. Reitti linjataan pääosin nykyisiä polkuja seuraten, paikoin raitti on linjattu uudelleen. Ulkoilureitin leveys on enintään 2 metriä, mikä mahdollistaa sujuvan ohittelun ja rinnakkain kulun. Reitti ei ole esteetön. Raitin vierellä kasvavia puita ei kaadeta, polun leveys voi olla tarvittaessa kapeampi puita kierrettäessä. Kallioille ei rakenneta eikä louhintoja tehdä. Reitille tulee yhdet puurakenteiset portaat, penkkejä, roska-astioita, infotaulut sekä pyörätelineet reitin päihin. Reittiä ei valaista eikä sille tule talvikunnossapitoa. Ylimääräisiä polkuja on tarkoitus osittain maisemoida, jotta kulkupaine kohdistuisi rakennettavalle reitille. Kulkua muinaismuistojen päälle pyritään estämään.</p><p>Puistosuunnitelmat valmistuvat talvella 2020 ja rakentaminen alkaa alustavan aika-taulun mukaan keväällä 2021.</p><p>*** </p><p>Illan ohjelma</p><p>17:00\t Klikkaa itsesi sisään tapahtumaan</p><p>17:05\t Tervetulosanat</p><p>Esittelykierros ja kommentointiohje tilaisuuden aikana<br>- maisema-arkkitehti Jouni Heinänen, WSP Finland</p><p>17:10 Hankkeen esittely<br>- projektijohtaja Maija Elo, WSP Finland<br>- maisema-arkkitehti Paula Hurme, Helsingin kaupunki</p><p>17:20\t Puistosuunnitelmaluonnoksen esittely<br>- maisema-arkkitehti Jaakko Aho-Mantila, WSP Finland</p><p>17:30\t Palautteessa esille nousseiden kysymysten läpikäynti <br>•\tReitin rakentaminen, linjaus ja leveys, Jaakko Aho-Mantila<br>•\tLiikenne ja pyöräily, liikenneinsinööri Olga Veikkolainen, Helsingin kaupunki<br>•\tVallien suojelu ja historiallisten arvojen huomioiminen, arkeologi Heini Hämäläinen, Helsingin kaupunki</p><p>n. 17:50 Osallistujien kysymyksiin vastaaminen. Kysymysten esittäminen tapahtuu chatin puolella.</p><p>n. 18:30\t Loppusanat ja kiitokset<br>Puistosuunnitelman jatkokehitys, Paula Hurme, maisema-arkkitehti / Petra Rantalainen, projektinjohtaja</p><p>19:00 \tTilaisuus päättyy viimeistään</p><p>Miten toimit tilaisuudessa?</p><p>Tilaisuuden kesto on kaiken kaikkiaan 2 h. Voit olla mukana koko illan tai osan iltaa. Osallistua voi halutessaan myös vain kuunnellen.</p><p>Tilaisuus sujuu paremmin, kun noudatat seuraavia yhteisiä pelisääntöjä:</p><p>Ole läsnä, keskity hetkeen.<br>Kuuntele ja arvosta toisia.<br>Tilaisuus etenee ohjelman mukaan. Ensin kuunnellaan esitykset.<br>Kommentit ja kysymykset käydään läpi esitysten jälkeen.<br>Chatin puolella voit kysyä myös esitysten aikana joko nimelläsi tai anonyymisti.<br>Tilaisuuden kieli on suomi.</p><p>***</p><p>Ohjeet verkkotilaisuuteen osallistujalle</p><p>Osallistuaksesi sinun ei tarvitse ladata laitteeseesi uusia sovelluksia, sillä tilaisuuteen osallistutaan verkkoselaimen välityksellä. Tarvitset myös vakaan verkkoyhteyden. Suosittelemme osallistumaan tietokoneella tai tabletilla, jolloin kuvat näkyvät isompina.</p><p>Jos sinulla ei ole Teams-sovellusta koneellasi, valitse ”Katso sen sijaan verkossa”. Sisään voit kirjautua anonyymina osallistujana tai käyttäen Microsoft 365 –tunnustasi.</p><p>Kirjaudu sisään hyvissä ajoin, klo 17:00 alkaen, jotta varmistut tekniikan toimivuudesta. Tuetut selaimet Teams-livelähetyksen osallistumiseen ovat Google Chrome, Mozilla Firefox ja Microsoft Edge.</p><p>Tilaisuudessa voit lähettää viestiseinälle kysymyksiä illan aiheisiin liittyen anonyymisti tai nimelläsi. </p><p>Katso lyhyt ohje kuinka jättää kysymys tai kommentti tilaisuudessa <a href=\"https://www.hel.fi/static/hkr/aluesuunnitelmat/malmin_pukinmaen_alsu/ohje_kysymyksiin.pdf\">ohje kuinka jättää kysymys tai kommentti tilaisuudessa</a></p><p>Jos Teams-livetapahtumaan liittyminen ja kysymysten lähettäminen siihen on sinulle uusi juttu, voit tutustua sen käyttöön etukäteen katsomalla <a href=\"https://www.youtube.com/watch?v=deJcGH7N0aw&amp;feature=youtu.be\">opetusvideon Youtubesta</a></p><p>Näin liityt Teams livetapahtumaan</p><p>Jos käytät Teamsia aktiivisesti, saattavat järjestelmät olettaa, että käytät liittymiseen esimerkiksi Teamsin työtiliäsi. Jos et halua liittyä tapahtumaan niin, muista kirjautua ensin ulos tai vaihtaa tiliä ennen tapahtumaan liittymistä. Myös se, että liittyy selai-men kautta ja tyhjentää välimuistin, voi auttaa.</p><p>Voit osallistua myös pelkällä älypuhelimella, mutta silloin puhelimeen on ladattava etukäteen Teams -sovellus.</p><p>Mitä teen, jos en pääse sisään tilaisuuteen?</p><p>Jos käy niin, ettei tilaisuuteen pääseminen onnistu tai tilaisuus keskeytyy teknisistä syistä, jaamme tilaisuuden aineiston jälkeenpäin. </p><p>***<br>Tilaisuuden jälkeen</p><p>Jaamme tallenteen tilaisuudesta katsottavaksi osoitteessa hel.fi/asukastilaisuudet. Tallenne on nähtävillä 24.12.2020 asti. <br></p>"
            },
            "short_description": {
                "fi": "Osallistu kotisohvaltasi Länsiulapanniemen rantareitin verkkotilaisuuteen! Tule 10.12. klo 17 keskustelemaan alueen puistosuunnitelman kehittämisestä."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://bit.ly/3qpx71K"
            },
            "provider": null,
            "location_extra_info": null,
            "name": {
                "fi": "Verkkotilaisuus Länsiulapanniemen rantareitin puistosuunnitelmasta"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3ajeqgfi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3cpopnam",
            "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:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p768/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/748683372385772/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68443,
                    "license": "event_only",
                    "created_time": "2020-12-03T08:08:52.094430Z",
                    "last_modified_time": "2020-12-03T08:28:52.054903Z",
                    "name": "Lempikuoro: Uusi sointu",
                    "url": "http://api.hel.fi/linkedevents/media/images/Uusi-sointu_valokuva_Pyry_K.jpg",
                    "cropping": "214,0,764,550",
                    "photographer_name": "Lempikuoro (c) Pyry Kantonen",
                    "alt_text": "Ihmisiä laulamassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68443/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-03T08:31:04.983064Z",
            "last_modified_time": "2020-12-03T08:31:04.983097Z",
            "date_published": null,
            "start_time": "2020-12-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Lempikuoro on kotimaisen kuorokentän uusi tulokas, jonka tekemisen keskiössä on yhteen soivien äänikudelmien utelias tutkiskelu. </p><p>Kuoro kutsuu kuulijat lähellä ja kaukana virittäytymään heidän kanssaan ainutlaatuiseen stream-konserttitunnelmaan. </p><p>Ensikonsertti koostuu kuorolle tärkeiden säveltäjien teoksista, joiden laulamisesta he erityisesti nauttivat. </p><p>Konsertissa kuullaan mm. Messiaenia, Britteniä ja Rautavaaraa sekä uudempia tuttavuuksia, kuten Shaw'ta, Wennäkoskea ja Komulaista. Lempikuoroa johtaa Julia Lainema.</p><p>Internet<br>10.12. klo 19</p><p>Vapaa pääsy</p>",
                "sv": "<p>Lempikören, en nykomling i den finska körscenen, fascineras av ljudtyger som vävs samman på synnerliga sätt. </p><p>Kören bjuder in lyssnare från nära och långt till en unik stream-konsertupplevelse, Uusi Sointu (finska för ”en ny ton”).</p><p>Debutkonserten består av verk från kompositörer som är viktiga för kören, t.ex. Messiaen, Britten, Rautavaara och nyare bekantskaper såsom Shaw, Wennäkoski och Komulainen. Lempikörens dirigent är Julia Lainema.</p><p>Internet<br>10.12. kl 19</p><p>Fritt inträde</p>",
                "en": "<p>Lempikuoro, a newcomer in the Finnish choral scene, is fascinated by sound fabrics that weave together in curious ways. </p><p>The choir invites listeners near and far to tune in withthem for a unique stream-concert experience, Uusi Sointu (Finnish for ‘a new tone’). </p><p>The debut concert consists of works from composers important to the choir, e.g. Messiaen, Britten, Rautavaara and newer acquaintances such as Shaw, Wennäkoski and Komulainen. Lempichoir's director is Julia Lainema.</p><p>Internet<br>10.12. at 19.00</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "Lempikuoro on kotimaisen kuorokentän uusi tulokas, jonka tekemisen keskiössä on yhteen soivien äänikudelmien utelias tutkiskelu. ",
                "sv": "Lempikören, en nykomling i den finska körscenen, fascineras av ljudtyger som vävs samman på synnerliga sätt. ",
                "en": "Lempikuoro, a newcomer in the Finnish choral scene, is fascinated by sound fabrics that weave together in curious ways. "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.lempikuoro.fi/konsertit/uusi-sointu/",
                "sv": "https://www.lempikuoro.fi/konsertit/uusi-sointu-eng/",
                "en": "https://www.lempikuoro.fi/konsertit/uusi-sointu-eng/"
            },
            "provider": {
                "fi": "Lempikuoro",
                "sv": "Lempikuoro",
                "en": "Lempikuoro"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lempikuoro: Uusi sointu,  verkkokonsertti",
                "sv": "Lempikören: Uusi sointu,  konsert på nätet",
                "en": "Lempi Choir: Uusi sointu, Online Concert"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3cpopnam/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3cox2yga",
            "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:p14336/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/clOymZWgy",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68442,
                    "license": "cc_by",
                    "created_time": "2020-12-03T06:44:20.872031Z",
                    "last_modified_time": "2020-12-03T06:44:20.872054Z",
                    "name": "MotiFest",
                    "url": "http://api.hel.fi/linkedevents/media/images/21024424337785_174655962590.jpg",
                    "cropping": "458,0,1462,1005",
                    "photographer_name": "MotiFest (c) Joel Siren",
                    "alt_text": "Tapahtuman nimi ja päiväys",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68442/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-03T06:52:08.647430Z",
            "last_modified_time": "2020-12-03T06:52:08.647466Z",
            "date_published": null,
            "start_time": "2021-01-09T11:30:00Z",
            "end_time": "2021-01-09T21:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>MotiFest tuo helpotusta kylmän korona-ajan keikkakaipuuseen ja odotettavaa tulevalle festarikesälle.</p><p>MotiFest on uudenlainen osallistava suomirap-festivaali, jossa kuuntelijoille annetaan mahdollisuus vaikuttaa artistikattaukseen.</p><p>Tapahtuman ensimmäinen vaihe on MotiFestin YouTube-kanavalla tammikuussa järjestettävä ilmainen online-festivaali, josta yleisön ja tuomariston suosikit pääsevät esiintymään kesällä festivaalin päätapahtumaan. Pidetyimmälle artistille on luvassa palkinto.</p><p>Esiintyjät:<br>Aina<br>Alabama Nikke<br>Bomstikidi<br>Dollari<br>Ekstaasi<br>Ilves<br>Jamidas<br>Jiitsei<br>Mäggi<br>Pakistanin Kaisa<br>Purplape<br>Rautanaama<br>Rehtori<br>SeRoosa<br>Skeema<br>Sude</p><p>YouTube<br>9.1. klo 13.30-23.30</p><p>Vapaa pääsy</p>",
                "en": "<p>MotiFest brings relief from the cold covid-era gig cravings, and something to look forward for the upcoming festival summer.</p><p>MotiFest is a new kind of participatory Finnish rap festival, where listeners have the opportunity to influence on the lineup.</p><p>The first phase of the event is a free online festival in January on MotiFest’s YouTube channel. The audience and jury favourites will perform in the festival’s main event next summer. The most liked artist will be awarded.</p><p>Performers:<br>Aina<br>Alabama Nikke<br>Bomstikidi<br>Dollari<br>Ekstaasi<br>Ilves<br>Jamidas<br>Jiitsei<br>Mäggi<br>Pakistanin Kaisa<br>Purplape<br>Rautanaama<br>Rehtori<br>SeRoosa<br>Skeema<br>Sude</p><p>YouTube<br>9.1.  13.30-23.30</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "MotiFest tuo helpotusta kylmän korona-ajan keikkakaipuuseen ja odotettavaa tulevalle festarikesälle.",
                "en": "MotiFest brings relief from the cold covid-era gig cravings, and something to look forward for the upcoming festival summer."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://fb.me/e/clOymZWgy",
                "en": "https://fb.me/e/clOymZWgy"
            },
            "provider": {
                "fi": "Henri Ahvonen",
                "en": "Henri Ahvonen"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MotiFest",
                "en": "MotiFest"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3cox2yga/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3chogl2e",
            "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:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p419/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4484/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/987621668415277/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://umohelsinki.fi/fi/konsertti/pahkinansarkija-app/",
                        "en": "https://umohelsinki.fi/fi/konsertti/pahkinansarkija-app/"
                    },
                    "price": {
                        "fi": "10€",
                        "en": "10€"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68441,
                    "license": "event_only",
                    "created_time": "2020-12-02T13:50:12.865684Z",
                    "last_modified_time": "2020-12-02T13:50:12.865724Z",
                    "name": "UMO Helsinki Jaz Orchestra, verkkokonsertti",
                    "url": "http://api.hel.fi/linkedevents/media/images/P9301180_mv_olli.jpg",
                    "cropping": "240,0,1680,1440",
                    "photographer_name": "UMO Helsinki Jaz Orchestra (c) Olli Nurmi",
                    "alt_text": "Muusikot soittamassa torvea",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68441/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-02T13:51:22.087436Z",
            "last_modified_time": "2020-12-02T13:51:37.550188Z",
            "date_published": null,
            "start_time": "2020-12-21T17:00:00Z",
            "end_time": "2020-12-28T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Verkkokonsertti: UMO Helsinki Jazz Orchestra: Pähkinänsärkijä</p><p>UMO Helsinki Jazz Orchestra soittaa harvoin kuullun jazzsovituksen Tšaikovskin rakastetusta Pähkinänsärkijä-jouluklassikosta. </p><p>Duke Ellington ja Billy Strayhorn kirjoittivat ja levyttivät teoksesta omaperäisen versionsa 1960 ja se kuullaan nyt UMO Helsingin tuoreena tulkintana. Konsertti on taltioitu joulukuussa 2020 ja sen johtaa orkesterin pääkapellimestari Ed Partyka.</p><p>Tšaikovskin (1840–1893) baleteista tunnetuimpiin ja arvostetuimpiin lukeutuvan Pähkinänsärkijän juoni perustuu E. T. A. Hoffmanin kirjoittamaan, jouluyöhön sijoittuvaan satuun Pähkinänsärkijä ja hiirikuningas. Baletti ensiesitettiin joulukuussa 1892 Pietarin Mariinski-teatterissa.</p><p>UMO Helsinki -sovellus<br>21.-28.12.</p><p>Liput 10€, kesto n. 35 min.</p><p>Ilmainen UMO Helsinki -sovellus on saatavilla Android- ja iOS-laitteisiin.</p><p>Android: Google Play -kaupasta: https://play.google.com/store/apps/details?id=fi.gapp.umo</p><p>iOS (iPhone, iPad, AppleTV): App Storesta: https://apps.apple.com/fi/app/umo-helsinki/id1522258046?l=fi</p><p>Konsertin katsominen älytelevisiolla onnistuu Chromecastin, AirPlayn ja Apple TV:n kautta.</p>",
                "en": "<p>Online concert: UMO Helsinki Jazz Orchestra: The Nutcracker Suite </p><p>Rare and exciting Christmas treat: Duke Ellington and Billy Strayhorn’s jazz arrangement of Pyotr Ilyich Tchaikovsky’s masterpiece, The Nutcracker.</p><p>The Nutcracker counts among Tchaikovsky’s (1840–1893) most famous and acclaimed ballets. The piece draws upon E.T.A. Hoffman’s story The Nutcracker and the Mouse King, set on Christmas night. </p><p>The ballet was premiered in December 1892 at the Mariinsky Theatre in Saint Petersburg, and in 1960 Ellington and Strayhorn arranged and recorded their own interpretation of the beloved piece. It is Ellington and Strayhorn’s version that the UMO Helsinki Jazz Orchestra will now play led by Chief Conductor Ed Partyka.</p><p>Recorded in December 2020 in Helsinki.</p><p>UMO Helsinki app<br>21.-28.12.</p><p>Tickets 10€, duration c. 35 min.</p><p>The free UMO Helsinki app is available for Android and iOS devices.</p><p>Download for Android at Google Play: https://play.google.com/store/apps/details?id=fi.gapp.umo</p><p>Download for iOS (iPhone, iPad, AppleTV) at App Store: https://apps.apple.com/fi/app/umo-helsinki/id1522258046?l=fi</p><p>You can watch concerts on your smart TV via Chromecast, AirPlay, and Apple TV.</p>"
            },
            "short_description": {
                "fi": "Verkkokonsertti: UMO Helsinki Jazz Orchestra: Pähkinänsärkijä",
                "en": "Online concert: UMO Helsinki Jazz Orchestra: The Nutcracker Suite "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://umohelsinki.fi/fi/konsertti/pahkinansarkija-app/",
                "en": "https://umohelsinki.fi/en/konsertti/nutcracker-suite-app/"
            },
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra ",
                "en": "UMO Helsinki Jazz Orchestra "
            },
            "location_extra_info": null,
            "name": {
                "fi": "UMO Helsinki Jazz Orchestra, verkkokonsertti",
                "en": "UMO Helsinki Jazz Orchestra, online concert"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3chogl2e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3chkxc4y",
            "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:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4484/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/463699847839628/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67754,
                    "license": "event_only",
                    "created_time": "2020-11-02T09:47:19.097676Z",
                    "last_modified_time": "2020-11-02T09:47:19.097714Z",
                    "name": "UMO Helsinki Ensemble",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kohtaamisia1597muoks-1.jpg",
                    "cropping": "100,0,700,600",
                    "photographer_name": "UMO Helsinki Ensemble (c) Maarit Kytöharju",
                    "alt_text": "Soittajia lavalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67754/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-02T13:36:10.492030Z",
            "last_modified_time": "2020-12-02T13:36:10.492065Z",
            "date_published": null,
            "start_time": "2020-12-03T17:00:00Z",
            "end_time": "2020-12-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Verkkokonsertti: UMO Helsinki Ensemble feat. Annimaria Rinne: Great American Songbook </p><p>Laulaja Annimaria Rinne ja UMO Helsinki Ensemble tarttuvat ennakkoluulottomasti “suuren amerikkalaisen laulukirjan” säkeisiin – eli 1920–1950 luvun suosittuihin Broadway-teattereiden sekä Hollywood-elokuvien musiikkinumeroihin. </p><p>Luvassa on enemmän ja vähemmän kuultuja musikaaliklassikoita tyylikkäinä sovituksina. </p><p>YouTube<br>katsottavissa 3.12. klo 19-10.12. klo 19</p><p>Vapaa pääsy</p>",
                "sv": "<p>Online konsert: UMO Helsinki Ensemble feat. Annimaria Rinne: Great American Songbook</p><p>Sångerskan Annimaria Rinne och UMO Helsinki Ensemble fattar utan fördomar verserna i den ”stora amerikanska sångboken” - det vill säga de populära musiknumren på 1920- och 1950-talet Broadway-teatrar och Hollywoodfilmer. </p><p>Mer och mindre hörda musikklassiker lovas som snygga arrangemang. </p><p>YouTube<br>visas 3.12. kl 19-10.12. kl 19</p><p>Fritt inträde</p>",
                "en": "<p>Online concert: UMO Helsinki Ensemble feat. Annimaria Rinne: Great American Songbook </p><p>The UMO Ensemble together with singer Annimaria Rinne take on the Great American Songbook, i.e. popular songs from Broadway musicals and Hollywood films from the 1920s to the 1950s. </p><p>Expect to hear more or less familiar musical classics with stylish arrangements. </p><p>YouTube<br>available 3.12. at 19.00-10.12. at 19.00</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "Verkkokonsertti: UMO Helsinki Ensemble feat. Annimaria Rinne: Great American Songbook",
                "sv": "Online konsert: UMO Helsinki Ensemble feat. Annimaria Rinne: Great American Songbook",
                "en": "Online concert: UMO Helsinki Ensemble feat. Annimaria Rinne: Great American Songbook "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.youtube.com/channel/UCIEX2i6DjKlSZzpnjVwblpg",
                "sv": "https://www.youtube.com/channel/UCIEX2i6DjKlSZzpnjVwblpg",
                "en": "https://www.youtube.com/channel/UCIEX2i6DjKlSZzpnjVwblpg"
            },
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra ",
                "sv": "UMO Helsinki Jazz Orchestra ",
                "en": "UMO Helsinki Jazz Orchestra "
            },
            "location_extra_info": null,
            "name": {
                "fi": "UMO Helsinki Ensemble, verkkokonsertti",
                "sv": "UMO Helsinki Ensemble, online konsert",
                "en": "UMO Helsinki Ensemble, online concert"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3chkxc4y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:218126",
            "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:10593/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?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": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 68419,
                    "license": "cc_by",
                    "created_time": "2020-12-01T11:21:55.967904Z",
                    "last_modified_time": "2020-12-01T11:21:55.967936Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{3301BF9B-F91E-4B53-8677-F054A178166F}/85843",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68419/?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-12-01T11:21:55.864390Z",
            "last_modified_time": "2020-12-01T11:21:56.027084Z",
            "date_published": "2020-12-01T09:59:00Z",
            "start_time": "2020-12-03T08:00:00Z",
            "end_time": "2020-12-03T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<h3>Torstaina 3.12. klo 10-20</h3><p>Kaikki pyörii on Espoon kaupungin toimijoiden ja Espoossa toimivien vammais- ja potilasjärjestöjen yhteinen voimanponnistus. Tarkoitus on esitellä eri toimijoita ja erilaisia tapoja elää arkea entistä esteettömämmin. Tapahtuma järjestetään kerran vuodessa kansainvälisenä vammaistenpäivänä. Tänä vuonna tapahtuman suojelijana toimii Espoon kaupungin perusturvajohtaja Juha Metso. Tervetuloa tapahtumaan verkossa.</p><p>Tapahtuman löydät <a href=\"https://kaikkipyorii.blogspot.com/\">Kaikki pyörii blogista</a>. <a href=\"https://kaikkipyorii.blogspot.com/2020/11/kaikki-pyorii-ohjelma-3122020.html\">Ohjelma</a> on Teams-kokouksina ja videolinkkeinä.</p><p>Teams-kokouksissa voit itse osallistua kysymällä ja kommentoimalla tai vaikkapa karaokea laulamalla.</p><p>Videolinkeistä löydät ainakin jumppaohjeita, satuja ja runoja sekä virtuaalikierroksia museoon.</p>"
            },
            "short_description": {
                "fi": "Kaikki pyörii on Espoon kaupungin toimijoiden ja Espoossa toimivien vammais- ja potilasjärjestöjen yhteinen voimanponnistus."
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Etätapahtuma"
            },
            "name": {
                "fi": "Etätapahtuma - Kaikki Pyörii"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:218126/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3b2ffmda",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@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": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/FriskisSvettisHelsinki",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68018,
                    "license": "event_only",
                    "created_time": "2020-11-11T06:25:45.659289Z",
                    "last_modified_time": "2020-11-11T06:25:45.659313Z",
                    "name": "Friskis-livetreeni: Tanssi workshop",
                    "url": "http://api.hel.fi/linkedevents/media/images/2019-05-11_FS-1038_LR.jpg",
                    "cropping": "433,0,1487,1054",
                    "photographer_name": "Friskis & Svettis (c) Olli-Pekka Orpo",
                    "alt_text": "Ihmisiä jumppasalilla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68018/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-12-01T06:54:22.763000Z",
            "last_modified_time": "2020-12-01T06:54:22.763033Z",
            "date_published": null,
            "start_time": "2020-12-06T13:00:00Z",
            "end_time": "2020-12-06T13:55:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tänä itsenäisyyspäivänä kaikki pääsevät tanssilattialle, kun Friskis&amp;Svettis Helsinki tarjoaa YouTube-kanavallaan yhteisen virtuaalisen tanssikokemuksen.</p><p>Haluatko tanssia discoa, lattaria, streetiä, swingiä tai vaikkapa burlesque'ta? Tällä tunnilla liikutaan eri tanssityyleillä tunnelmasta toiseen. </p><p>Aikaisempaa tanssikokemusta ei tarvita, tärkeintä on tunne ja liikunnan ilo. </p><p>Internet, YouTube<br>6.12. klo 15</p><p>Vapaa pääsy, kesto 55 min</p>",
                "en": "<p>Friskis&amp;Svettis Helsinki will be streaming a fun and energetic  dance class on their YouTube channel on Independence Day.</p><p>The class shifts from one ambience to another, from disco to Latin and from swing to burlesque. </p><p>No previous experience of dance is needed, the most important thing is the joy of exercise. </p><p>Internet, YouTube<br>6.12. at 15.00</p><p>Free entry, duration 55 min</p>"
            },
            "short_description": {
                "fi": "Tänä itsenäisyyspäivänä kaikki pääsevät tanssilattialle, kun Friskis&Svettis Helsinki tarjoaa YouTube-kanavallaan yhteisen virtuaalisen tanssikokemuksen.",
                "en": "Friskis&Svettis Helsinki will be streaming a fun and energetic  dance class on their YouTube channel on Independence Day."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.youtube.com/user/FriskisSvettisFI",
                "en": "https://www.youtube.com/user/FriskisSvettisFI"
            },
            "provider": {
                "fi": "Friskis & Svettis",
                "en": "Friskis & Svettis"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Friskis-livetreeni: Itsenäisyyspäivän tanssi",
                "en": "Friskis' Online Workout: Independence Day Dance"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3b2ffmda/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af26i3t5m4",
            "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:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27962/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4484/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.vapaataanet.fi/daniel-erdmanns-velvet-revolution-suomessa-marraskuun-lopussa/",
                        "en": "https://www.vapaataanet.fi/daniel-erdmanns-velvet-revolution-suomessa-marraskuun-lopussa/"
                    },
                    "price": {
                        "fi": "20€",
                        "en": "20€"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 68216,
                    "license": "event_only",
                    "created_time": "2020-11-20T06:39:17.051742Z",
                    "last_modified_time": "2020-11-20T06:39:17.051764Z",
                    "name": "Daniel Erdmann’s Velvet Revolution feat. Mikko Innanen",
                    "url": "http://api.hel.fi/linkedevents/media/images/Daniel-Erdmanns-Velvet-Rev.jpg",
                    "cropping": "166,0,834,668",
                    "photographer_name": "Das Atelier ja Vapaat äänet (c) Daniel Erdmann",
                    "alt_text": "Kolme miestä istumassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/68216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-11-20T06:54:07.741856Z",
            "last_modified_time": "2020-11-30T13:13:15.744445Z",
            "date_published": null,
            "start_time": "2020-12-01T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Hietsu is Happening &amp; Vapaat äänet: Daniel Erdmann’s Velvet Revolution feat. Mikko Innanen </p><p>Hietsun Paviljongin tunnelmallisen juhlasalin täyttävät samettisen vallankumoukselliset sävelet, kun Suomen kiertueensa päättävä saksofonisti Daniel Erdmannin saksalais-<br>ranskalais-englantilainen trio kohtaa saksofonisti Mikko Innasen. </p><p>Aluksi kuullaan basisti Antti Lötjöstä ja kitaristi Petri Kumelaa erikseen ja yhdessä. </p><p>Internet<br>1.12. ovet klo 18.40 showtime klo 19</p><p>Liput 20€, sitovat ilmoittautumiset: charlesgil22@gmail.com</p><p>HUOM! Yleisötilaisuus on peruttu. Konsertti lähetetään suorana verkossa.</p>",
                "en": "<p>Hietsu is Happening &amp; Vapaat äänet: Daniel Erdmann’s Velvet Revolution feat. Mikko Innanen </p><p>The chamber jazz group of the German saxophonist Daniel Erdmann makes its debut tour in Finland and performs also at Hietsun Paviljonki in December. </p><p>Velvet Revolution performs the music of its latest album Won’t Put No Flag Out.  </p><p>Hietsun Paviljonki<br>1.12. doors at 18.40, showtime at 19.00</p><p>Tickets 20€, bookings: charlesgil22@gmail.com</p><p>Due to the covid-19 pandemic, limited amount of seats are available.</p><p>ATT: The event is cancelled. The concert will be broadcast online.</p>"
            },
            "short_description": {
                "fi": "Hietsu is Happening & Vapaat äänet: Daniel Erdmann’s Velvet Revolution feat. Mikko Innanen",
                "en": "Hietsu is Happening & Vapaat äänet: Daniel Erdmann’s Velvet Revolution feat. Mikko Innanen "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.vapaataanet.fi/daniel-erdmanns-velvet-revolution-suomessa-marraskuun-lopussa/",
                "en": "https://www.vapaataanet.fi/daniel-erdmanns-velvet-revolution-on-tour-in-finland-and-estonia-in-november-december/"
            },
            "provider": {
                "fi": "Das Atelier ja Vapaat äänet ",
                "en": "Das Atelier ja Vapaat äänet "
            },
            "location_extra_info": null,
            "name": {
                "fi": "Daniel Erdmann’s Velvet Revolution",
                "en": "Daniel Erdmann’s Velvet Revolution"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af26i3t5m4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2y4rcabm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@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": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2y4rb4ku/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 43437,
                    "license": "event_only",
                    "created_time": "2018-04-13T11:41:43.732459Z",
                    "last_modified_time": "2018-04-13T11:41:43.732491Z",
                    "name": "Oopperan teetanssit",
                    "url": "http://api.hel.fi/linkedevents/media/images/teetanssit_photo_Mirka_Klee.jpg",
                    "cropping": "576,0,1344,768",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Mirka Kleemola",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:5/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2020-11-03T13:20:38.940507Z",
            "last_modified_time": "2020-11-30T07:48:48.040041Z",
            "date_published": null,
            "start_time": "2020-12-02T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Ooppera kutsuu seniorit lämpiöön hyväntuulisiin teetansseihin! </p><p>Maksuttomassa tanssi-iltapäivässä pyörähdellään ikivihreiden tahdissa, vaihtelevien yhtyeiden ja solistien säestyksellä.</p><p>Teetanssit järjestetään syksyllä 2020 turvallisuussyistä vain suorina lähetyksinä Oopperan ja Baletin Stage24-palvelussa.</p><p>Internet, Stage24<br>4.11. ja 2.12. klo 15 (peruutettu)</p><p>Vapaa pääsy</p>",
                "sv": "<p>Operan bjuder in alla seniorer till en tedans i positiv anda! Det är fråga om en gratis eftermiddag där man får dansa till evergreens framförda av varierande orkestrar och solister.</p><p>På grund av coronapandemin ska tedanserna streamas på hösten på Stage24.</p><p>Internet, Stage24<br>4.11. och 2.12. kl 15 (inställt)</p><p>Fritt deltagande</p>",
                "en": "<p>The Finnish National Opera invites senior citizens to put their best foot forward in the foyer!</p><p>There is no entrance fee to the Tea Dances, and the music is evergreens performed live by various ensembles and soloists.</p><p>Due to the covid-19 pandemic, the Tea Dances will be streamed on Stage24 in autumn.</p><p>Internet, Stage 24<br>4.11. and 2.12. at 15.00 (cancelled)</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "Ooppera kutsuu seniorit lämpiöön hyväntuulisiin teetansseihin! ",
                "sv": "Operan bjuder in alla seniorer till en tedans i positiv anda!",
                "en": "Opera invites all seniors to tea dance! "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/live/",
                "sv": "https://oopperabaletti.fi/live/",
                "en": "https://oopperabaletti.fi/live/"
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "location_extra_info": {
                "fi": "Päälämpiö"
            },
            "name": {
                "fi": "Peruutettu: Oopperan teetanssit",
                "sv": "Inställt: Tedans på Operan",
                "en": "Cancelled: Opera Tea Dance"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2y4rcabm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2y4rb4ku",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@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,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2y4rb7mu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2y4rcabm/?format=api"
                }
            ],
            "images": [
                {
                    "id": 43437,
                    "license": "event_only",
                    "created_time": "2018-04-13T11:41:43.732459Z",
                    "last_modified_time": "2018-04-13T11:41:43.732491Z",
                    "name": "Oopperan teetanssit",
                    "url": "http://api.hel.fi/linkedevents/media/images/teetanssit_photo_Mirka_Klee.jpg",
                    "cropping": "576,0,1344,768",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Mirka Kleemola",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:5/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2020-11-03T13:20:37.997711Z",
            "last_modified_time": "2020-11-30T07:48:02.375819Z",
            "date_published": null,
            "start_time": "2020-11-04T13:00:00Z",
            "end_time": "2020-12-02T21:59:59.999000Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Ooppera kutsuu seniorit lämpiöön hyväntuulisiin teetansseihin! </p><p>Maksuttomassa tanssi-iltapäivässä pyörähdellään ikivihreiden tahdissa, vaihtelevien yhtyeiden ja solistien säestyksellä.</p><p>Teetanssit järjestetään syksyllä 2020 turvallisuussyistä vain suorina lähetyksinä Oopperan ja Baletin Stage24-palvelussa.</p><p>Internet, Stage24<br>4.11. ja 2.12. klo 15 (peruutettu)</p><p>Vapaa pääsy</p>",
                "sv": "<p>Operan bjuder in alla seniorer till en tedans i positiv anda! Det är fråga om en gratis eftermiddag där man får dansa till evergreens framförda av varierande orkestrar och solister.</p><p>På grund av coronapandemin ska tedanserna streamas på hösten på Stage24.</p><p>Internet, Stage24<br>4.11. och 2.12. kl 15 (inställt)</p><p>Fritt deltagande</p>",
                "en": "<p>The Finnish National Opera invites senior citizens to put their best foot forward in the foyer!</p><p>There is no entrance fee to the Tea Dances, and the music is evergreens performed live by various ensembles and soloists.</p><p>Due to the covid-19 pandemic, the Tea Dances will be streamed on Stage24 in autumn.</p><p>Internet, Stage 24<br>4.11. and 2.12. at 15.00 (cancelled)</p><p>Free admission</p>"
            },
            "short_description": {
                "fi": "Ooppera kutsuu seniorit lämpiöön hyväntuulisiin teetansseihin! ",
                "sv": "Operan bjuder in alla seniorer till en tedans i positiv anda!",
                "en": "Opera invites all seniors to tea dance! "
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/live/",
                "sv": "https://oopperabaletti.fi/live/",
                "en": "https://oopperabaletti.fi/live/"
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "location_extra_info": {
                "fi": "Päälämpiö"
            },
            "name": {
                "fi": "Oopperan teetanssit",
                "sv": "Tedans på Operan",
                "en": "Opera Tea Dance"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2y4rb4ku/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}