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

{
    "meta": {
        "count": 269649,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&page=2&sort=-end_time",
        "previous": null
    },
    "data": [
        {
            "id": "espoo_le:aggh5gwtza",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwlfu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwlgm/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwlh4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwliu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 137419,
                    "license": "cc_by",
                    "created_time": "2023-09-01T13:42:47.325401Z",
                    "last_modified_time": "2023-09-01T13:42:47.325422Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Mimijakuku.jpg",
                    "cropping": "426,0,2134,1707",
                    "photographer_name": "",
                    "alt_text": "Mimi ja Kuku",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137419/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-01T13:47:15.884193Z",
            "last_modified_time": "2023-09-01T13:54:32.789338Z",
            "date_published": null,
            "start_time": "2023-09-30T11: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,
            "short_description": {
                "fi": "Tervetuloa Pikku Kakkosestakin tuttujen Mimin ja Kukun esitykseen Lippulaivan kirjastoon klo 14 alkaen. "
            },
            "provider": {
                "fi": "Lippulaivan kirjasto"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa Pikku Kakkosestakin tuttujen Mimin ja Kukun esitykseen Lippulaivan kirjastoon klo 14 alkaen. Esitys on monitoimitila Salongissa.</p><p>Mimin ja Kukun liikunnallisessa huippuviihdyttävässä esityksessä lapsi kokee onnistumisen ja oivaltamisen riemua. Jokainen lapsi saa olla esityksen sankari omalla tavallaan. Esityksessä on iloisen vauhdikas meininki, paljon TV:stä tuttuja laululeikkejä, ripaus teatteria ja hyppysellinen taikaa. </p><p>Tapahtuma on ilmainen ja sopii ihan kaiken ikäisille!</p><p>Tapahtuma on osa Espoon kulttuuritalojen ja -palveluiden Lasten viikonlopun ohjelmaa. Lue lisää Lasten viikonlopusta espoo.fi-sivulta: espoo.fi/lastenviikonloppu</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lippulaivan_kirjasto/Tapahtumat/Mimin_ja_Kukun_esitys(262643)"
            },
            "name": {
                "fi": "Lasten viikonloppu: Mimi ja Kuku "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggh5gwtza/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agdjoihz2q",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71761/?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:p3064/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventPostponed",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/175730418531265",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    },
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u02160010",
            "sub_events": [],
            "images": [
                {
                    "id": 90267,
                    "license": "event_only",
                    "created_time": "2023-02-28T07:31:59.151869Z",
                    "last_modified_time": "2023-02-28T08:26:05.730199Z",
                    "name": "Nettipohja_Runoja-ja-unenomaisia-lauluja.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Nettipohja_Runoja-ja-unenomaisia-lauluja_85mw7Qd.jpg",
                    "cropping": "344,0,1713,1369",
                    "photographer_name": "Sannaleena Lapinoja",
                    "alt_text": "Omakuva",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u02160010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/90267/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5590/?format=api"
                }
            ],
            "created_time": "2023-02-28T08:26:06.185726Z",
            "last_modified_time": "2023-03-08T07:17:01.398705Z",
            "date_published": null,
            "start_time": null,
            "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": 0,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Runoja ja unenomaisia lauluja ihmisenä olemisesta."
            },
            "provider": {
                "fi": "Stadin asukastalo Saunabaari"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kirjailija-muusikko Sannaleena Lapinoja saapuu musisoimaan ja lausumaan runoja asukastalo Saunabaariin. Esityksessä kuullaan runoja ja unenomaisia lauluja ihmisenä olemisesta.</p><p>Tervetuloa!</p><p>--------------</p><p><i>Helsingin kaupungin ylläpitämät Stadin asukastalot ovat kaikille avoimia harrastus- ja kohtaamispaikkoja. Tapahtumat ja retket ovat maksuttomia, harrastusmateriaalit ja matkat omakustanteisia. Ohjelmamuutokset ovat mahdollisia.</i></p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": "https://www.hel.fi/helsinki/fi/sosiaali-ja-terveyspalvelut/sosiaalinen-tuki-ja-toimeentulo/asukastalot/pohjoinen/saunabaari/"
            },
            "name": {
                "fi": "Runoja ja  unenomaisia  lauluja"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdjoihz2q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afyog7kgka",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:2182/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27962/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/204094494009725/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 63784,
                    "license": "event_only",
                    "created_time": "2020-03-16T13:10:58.420812Z",
                    "last_modified_time": "2020-03-16T13:10:58.420833Z",
                    "name": "Fridays: Phunky Sound of The Giraffe",
                    "url": "http://api.hel.fi/linkedevents/media/images/phunky_sound_of_giraffe.jpg",
                    "cropping": "130,0,592,461",
                    "photographer_name": "Hard Rock Cafe / Phunky Sound of The Giraffe",
                    "alt_text": "Piirros yhtyeestä soittamassa lavalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/63784/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-16T13:16:42.974117Z",
            "last_modified_time": "2020-03-26T12:33:05.771781Z",
            "date_published": null,
            "start_time": "2020-04-17T19:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Fridays aloittaa viikonlopun livemusiikilla Hard Rock Cafe Helsingissä joka perjantai. Lavalla nähdään paikallisia, eri genrejä edustavia muusikoita.",
                "en": "“Fridays” kicks off the weekend with live music every Friday presenting local bands performing different genres of music."
            },
            "provider": {
                "fi": "Hard Rock Cafe Helsinki",
                "en": "Hard Rock Cafe Helsinki"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Fridays aloittaa viikonlopun livemusiikilla Hard Rock Cafe Helsingissä joka perjantai. Lavalla nähdään paikallisia, eri genrejä edustavia muusikoita.</p><p>Phunky Sound of The Giraffe soittaa funkia ja soulia ripauksella New Orleansia.</p><p>Laulu: Steve Lee<br>Rummut: Ville Nevala / Felix Damski<br>Lyömäsoittimet: Timppa Seppälä<br>Basso: Antti Maasalmi<br>Kosketinsoittimet: Tapani \"Muncho\" Miettinen<br>Trumpetti: Raikka \"El Papa\" Korhonen<br>Kitara: Kimmo Auvinen</p><p>Hard Rock Cafe<br>17.4. klo 22.30</p><p>Vapaa pääsy</p>",
                "en": "<p>“Fridays” kicks off the weekend with live music every Friday presenting local bands performing different genres of music.</p><p>Phunky Sound of The Giraffe is playing funky groove and soul with a taste of New Orleans.</p><p>Vocals: Steve Lee<br>Drums: Ville Nevala / Felix Damski<br>Percussions: Timppa Seppälä<br>Bass: Antti Maasalmi<br>Keyboards: Tapani \"Muncho\" Miettinen<br>Trumpet: Raikka \"El Papa\" Korhonen<br>Guitar: Kimmo Auvinen</p><p>Hard Rock Cafe<br>17.4. at 22.30</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/events/204094494009725/",
                "en": "https://www.facebook.com/events/204094494009725/"
            },
            "name": {
                "fi": "Peruttu: Fridays: Phunky Sound of The Giraffe",
                "en": "Cancelled: Fridays: Phunky Sound of The Giraffe"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyog7kgka/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afyog3ocoi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/matko:2182/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1882/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27962/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/187648702687649/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 63783,
                    "license": "event_only",
                    "created_time": "2020-03-16T12:53:12.090368Z",
                    "last_modified_time": "2021-11-18T12:44:30.748285Z",
                    "name": "RockCircus Sipola",
                    "url": "http://api.hel.fi/linkedevents/media/images/10708624_728045857250281_34.jpg",
                    "cropping": "194,0,1169,974",
                    "photographer_name": "Hard Rock Cafe (c) Mikko Sipola",
                    "alt_text": "Tatuoitu mies laulaa mikrofoniin",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/63783/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-16T12:59:46.175061Z",
            "last_modified_time": "2020-03-26T12:32:54.646688Z",
            "date_published": null,
            "start_time": "2020-04-03T19:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Fridays aloittaa viikonlopun livemusiikilla Hard Rock Cafe Helsingissä joka perjantai. Lavalla nähdään paikallisia, eri genrejä edustavia muusikoita.",
                "en": "“Fridays” kicks off the weekend with live music every Friday presenting local bands performing different genres of music."
            },
            "provider": {
                "fi": "Hard Rock Cafe Helsinki",
                "en": "Hard Rock Cafe Helsinki"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Fridays aloittaa viikonlopun livemusiikilla Hard Rock Cafe Helsingissä joka perjantai. Lavalla nähdään paikallisia, eri genrejä edustavia muusikoita.</p><p>RockCircus Sipola on ryhmä ammattimuusikoita, jotka ovat  koonneet ohjelmistonsa tunnetuista kappaleista sekä tuoreista listahiteistä, Mikko Sipola, Voice of Finlandin ensimmäisen kauden voittaja, on yhtyeen keulahahmo. </p><p>Hard Rock Cafe<br>3.4. klo 22.30</p><p>Vapaa pääsy</p>",
                "en": "<p>“Fridays” kicks off the weekend with live music every Friday presenting local bands performing different genres of music.</p><p>RockCircus Sipola is a group of professional musicians who have compiled the repertoire of well-known songs and fresh list hits Mikko Sipola, the winner of the first season of Voice of Finland, is the band's frontman. </p><p>Hard Rock Cafe<br>3.4. at 22.30</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.facebook.com/events/187648702687649/",
                "en": "https://www.facebook.com/events/187648702687649/"
            },
            "name": {
                "fi": "Peruttu: Fridays: RockCircus Sipola",
                "en": "Cancelled: Fridays: RockCircus Sipola"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyog3ocoi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:aggh5gwt24",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/espoo_le:aggh5gwld4/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 137420,
                    "license": "cc_by",
                    "created_time": "2023-09-01T13:51:45.010029Z",
                    "last_modified_time": "2023-09-01T13:51:45.010048Z",
                    "name": "Mimi ja Kuku",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/mimi_ja_kuku.png",
                    "cropping": "100,0,500,400",
                    "photographer_name": "",
                    "alt_text": "Mimi ja Kuku",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "http://api.hel.fi/linkedevents/v1/image/137420/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-01T13:52:36.478735Z",
            "last_modified_time": "2023-09-01T13:54:07.289412Z",
            "date_published": null,
            "start_time": "2023-09-30T08: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,
            "short_description": {
                "fi": "Tervetuloa Pikku Kakkosestakin tuttujen Mimin ja Kukun esitykseen Ison Omenan kirjastoon klo 11 alkaen. "
            },
            "provider": {
                "fi": "Ison Omenan kirjasto"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tervetuloa Pikku Kakkosestakin tuttujen Mimin ja Kukun esitykseen Ison Omenan kirjastoon klo 11 alkaen. </p><p>Mimin ja Kukun liikunnallisessa huippuviihdyttävässä esityksessä lapsi kokee onnistumisen ja oivaltamisen riemua. Jokainen lapsi saa olla esityksen sankari omalla tavallaan. Esityksessä on iloisen vauhdikas meininki, paljon TV:stä tuttuja laululeikkejä, ripaus teatteria ja hyppysellinen taikaa. </p><p>Tapahtuma on ilmainen ja sopii ihan kaiken ikäisille!</p><p>Tapahtuma on osa Espoon kulttuuritalojen ja -palveluiden Lasten viikonlopun ohjelmaa. Lue lisää Lasten viikonlopusta espoo.fi-sivulta: espoo.fi/lastenviikonloppu</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Ison_Omenan_kirjasto/Tapahtumat/Mimin_ja_Kukun_esitys(262708)"
            },
            "name": {
                "fi": "Lasten viikonloppu: Mimi ja Kuku "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo_le:aggh5gwt24/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afyhwuhsai",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71766/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:9/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15088/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyhwuhmme/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/VuosaarenLahioasema/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u320200103020",
            "sub_events": [],
            "images": [
                {
                    "id": 62546,
                    "license": "cc_by",
                    "created_time": "2020-01-31T08:18:17.676064Z",
                    "last_modified_time": "2020-01-31T08:18:17.676097Z",
                    "name": "Seniorisäpinät.jpg",
                    "url": "http://api.hel.fi/linkedevents/media/images/Senioris%C3%A4pin%C3%A4t.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "Anssi Keränen",
                    "alt_text": "seniorisäpinät",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200103020",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/62546/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2020-02-25T07:47:47.342087Z",
            "last_modified_time": "2020-03-24T13:44:59.593315Z",
            "date_published": null,
            "start_time": "2020-03-26T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Seniorisäpinät Torstaisin klo 9.30 – 11.30"
            },
            "provider": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Seniorisäpinät klo 9.30 – 11.30<br> <br> To 5.3. Seniorisäpinät\tklo 9.30\tTeema: VRP (Vatsa-reisi-pakara)<br> To 12.3. Seniorisäpinät \tklo 9.30\tTeema: Kävelleen kohti kevättä<br> To 19.3. Seniorisäpinät\tklo 9.30\tTeema: Ryhtiä ja kumpparia<br> To 26.3 Seniorisäpinät\tklo 9.30\tTeema: HIIT/Intervalli<br> <br> Lähtö Lähiöasemalta klo 8.45.<br> <br> Lähdetään yhdessä Myllypuron Liikuntamyllyyn liikkumaan. Tarvitset sisäliikuntavaatteet ja –kengät ja vesipullon. <br> Retki on maksuton, oma matkakortti mukaan. <br> <br> Ilmoittaudu ennakkoon Lähiöasemalla tai s-postilla vuosaaren.lahioasema@hel.fi <br> tai p. 09 3107 3249.<br> <br> Tervetuloa!<br> <br> <br> Vuosaaren lähiöasema<br> Mustalahdentie 10, 00960 Helsinki<br> Puh. +358 (0) 9 3107 3249<br> www.hel.fi/vuosaaren-lahioasema<br> <br> <br> Stadin asukastalojen Retket, Tapahtumat ja sisäänpääsymaksut ovat maksuttomia, matkat omakustanteisia mikäli muuta ei ole mainittu. <br> Ohjelman muutokset ovat mahdollisia. Lisätietoja: <br> www.hel.fi/vuosaaren-lahioasema<br> www.hel.fi/asukastalojen-tapahtumat<br> www.hel.fi/asukastalot<br> <br> <br> Tapahtumakalenteri kevät 2020<br> Stadin asukastalot ja Kampin kappeli<br> https://www.hel.fi/helsinki/fi/tapahtumakalenteri<br> http://www.hel.fi/asukastoiminta<br> <br> Tapahtumakalenteri 2020 Stadin asukastalot<br> Stadin asukastalot ja Kampin kappeli<br> www.hel.fi/asukastalojen-tapahtumat</p>"
            },
            "location_extra_info": {
                "fi": "Mustalahdentie 10, 00960 Helsinki"
            },
            "info_url": {
                "fi": "http://www.hel.fi/vuosaaren-lahioasema"
            },
            "name": {
                "fi": "Seniorisäpinät"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyhwuhsai/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af7gpwy5ky",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:71766/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6889/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/468612514772921",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u3202001030",
            "sub_events": [],
            "images": [
                {
                    "id": 75884,
                    "license": "event_only",
                    "created_time": "2021-11-30T09:28:02.665847Z",
                    "last_modified_time": "2021-11-30T09:31:56.813021Z",
                    "name": "Kuvassa suomen kansallismuseo.",
                    "url": "http://api.hel.fi/linkedevents/media/images/18.1._Retki_Suomen_kansallismuseoon_Vuosaari_LinkedEvents_-1440x810px.jpg",
                    "cropping": "262,0,938,675",
                    "photographer_name": "Helsingin aineistopankki / Comma Image Oy",
                    "alt_text": "Kuvassa suomen kansallismuseo.",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u320200103040",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/75884/?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": "2022-01-17T11:45:20.238456Z",
            "last_modified_time": "2022-01-26T10:33:37.274916Z",
            "date_published": null,
            "start_time": null,
            "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,
            "short_description": {
                "fi": "Mäccmõš, maccâm, máhccan – kotiinpaluu. Näyttely juhlistaa kansainvälisesti merkittävää, runsaan 2 000 saamelaisesineen palautusta saamelaisyhteisölle."
            },
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Mäccmõš, maccâm, máhccan – kotiinpaluu -näyttelyn sisältö koostuu noin 140 saamelaiskokoelman esineestä. Tämän lisäksi esillä on arkistoaineistoa, valokuvia ja saamelaisten taiteilijoiden teoksia. Suomen kansallismuseon saamelaiskokoelma on muodostunut noin 170 vuoden keruutoiminnan myötä vuosina 1830–1998.</p>\n<p>Eri aikoina kokoelmaan hankitut esineet heijastavat oman aikansa ja kerääjiensä käsityksiä ja arvoja. Näyttely nostaa esille kulttuuriperinnön merkityksen ihmiselle ja identiteetille, ja saa pohtimaan kulttuuriperinnön hallinnan merkitystä ja omistajuutta.</p>\n<p>Repatriaatio kertoo yhteiskunnan muutoksesta ja käynnissä olevasta muutoksesta museotoiminnassa.</p>\n<p>Lähdemme retkelle asukastalo Vuosaaresta ke 2.2. klo 10.15. Matka HSL AB-vyöhyke omakustanteinen.</p>\n<p>Ennakkoilmoittautuminen asukastalolla tai puh. 09 310 73249 ma-pe klo 9-16 viimeistään edellisenä päivänä. Retki voi täyttyä jo aiemmin.</p>\n<p>Tervetuloa mukaan!&nbsp;</p>\n<p>Helsingin kaupungin ylläpitämät Stadin asukastalot ovat kaikille avoimia harrastus- ja kohtaamispaikkoja. Tapahtumat ja retket ovat maksuttomia, harrastusmateriaalit ja matkat omakustanteisia. Ohjelmamuutokset ovat mahdollisia.</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "info_url": {
                "fi": "https://www.hel.fi/helsinki/fi/sosiaali-ja-terveyspalvelut/sosiaalinen-tuki-ja-toimeentulo/asukastalot/ita/vuosaaren-lahioasema/"
            },
            "name": {
                "fi": "Retki Suomen Kansallismuseoon"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af7gpwy5ky/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2xsthsfm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20755/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27962/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p29997/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2xsthi6u/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "alk. 54,50€",
                        "sv": "från 54,50€",
                        "en": "from 54,50€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/fork/fork-chapter-1-the-end-2476930/",
                        "sv": "https://www.lippu.fi/artist/fork/fork-chapter-1-the-end-2476930/",
                        "en": "https://www.lippu.fi/artist/fork/fork-chapter-1-the-end-2476930/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67734,
                    "license": "event_only",
                    "created_time": "2020-10-30T11:21:04.500933Z",
                    "last_modified_time": "2020-10-30T11:21:04.500961Z",
                    "name": "Fork, Chapter 1: The End",
                    "url": "http://api.hel.fi/linkedevents/media/images/49066028152_7f1712d87e_k.jpg",
                    "cropping": "314,0,1606,1293",
                    "photographer_name": "Svenska Teatern (c) Juha Mustonen",
                    "alt_text": "Esiintyjiä lavalla",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67734/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-10-30T11:38:07.294068Z",
            "last_modified_time": "2020-11-23T11:00:04.653121Z",
            "date_published": null,
            "start_time": "2020-11-24T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Tämä on FORKin viimeinen show. Unelmamatka, jolle neljä ystävää lähtivät kalliolaisesta keittiöstä vuonna 1996, on tulossa päätökseensä.",
                "sv": "Detta är FORKs sista show. Drömresan, som fyra vänner startade i ett kök i Berghäll år 1996, går nu mot sitt slut. ",
                "en": "Finnish vocal band FORK's last show will be seen on the main stage of Svenska Teatern."
            },
            "provider": {
                "fi": "Svenska Teatern",
                "sv": "Svenska Teatern",
                "en": "Svenska Teatern"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tämä on FORKin viimeinen show. Unelmamatka, jolle neljä ystävää lähtivät kalliolaisesta keittiöstä vuonna 1996, on tulossa päätökseensä. 22 vuoden ajan<br>yhtye on matkannut maailman ympäri ja laulanut yli puolelle miljoonalle iloiselle fanille. Mutta myös unelmien täytyy päättyä ja he haluavat lopun tulevan unelman ollessa kauneimmillaan.</p><p>Kokoillan show ”Chapter 1: The End” sai ensi iltansa Svenska Teaternilla marraskuussa 2019, ja on tämän viimeisen yhdessä vietetyn vuoden ensimmäinen ja suurin luku. Samalla näyttämöllä, jolla vuonna 2009 he esittivät ensimmäisen suuren Pink Noise - show’nsa, yhtye juhlistaa kaikkea rakastamaansa; yleisöä, musiikkia, rakkautta ja tämän kaiken sisältämää mahtipontista hulluutta.</p><p>Svenska Teatern, Suuri näyttämö<br>3.-28.11.2020</p><p>Liput alk. 54,50€ Lippupisteestä</p>",
                "sv": "<p>Detta är FORKs sista show. Drömresan, som fyra vänner startade i ett kök i Berghäll år 1996, går nu mot sitt slut. I 22 år har de rest jorden runt och sjungit för över en halv miljon glada fans. Men även drömmar måste ha ett slut och de vill att slutet kommer då drömmen är som vackrast.</p><p>Helkvällsshowen Chapter 1: The End, med premiär på Svenska Teatern den 15 november 2019, är det första och största kapitlet under detta sista år tillsammans.</p><p>På samma scen som de 2009 gjorde sin första stora show Pink Noise, skall de nu för sista gången fira allt det vi älskar; publiken, musiken, kärleken och den bombastiska galenskapen i det hela.</p><p>Svenska Teatern, Stora scenen<br>3.-28.11.2020</p><p>Biljetter från 54,50€ från LIppupiste</p>",
                "en": "<p>Finnish vocal band FORK's last show will be seen on the main stage of Svenska Teatern.</p><p>The band has been performing since 1996 for over half a million enthusiastic fans.</p><p>This time they will celebrate everything they love: audience, music, love and the bombastic madness in all of them.</p><p>Svenska Teatern, Main Scene<br>3.-28.11.2020</p><p>Tickets from 54,50€ from Lippupiste</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://svenskateatern.fi/fi/ohjelmisto/fork_chapter_1_the_end/",
                "sv": "https://svenskateatern.fi/sv/repertoar/fork_chapter_1_the_end/",
                "en": "https://svenskateatern.fi/sv/repertoar/fork_chapter_1_the_end/"
            },
            "name": {
                "fi": "Peruutettu: FORK, Chapter 1: The End",
                "sv": "Annulerad: FORK, Chapter 1: The End",
                "en": "Cancelled: FORK, Chapter 1: The End"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2xsthsfm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afy2wowvou",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20784/?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:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2wowp4a/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15-129€",
                        "sv": "15-129€",
                        "en": "15-129€"
                    },
                    "info_url": {
                        "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/joutsenlampi/",
                        "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/svansjon/",
                        "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/swan-lake/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64172,
                    "license": "event_only",
                    "created_time": "2020-04-24T12:18:33.532369Z",
                    "last_modified_time": "2020-04-24T12:18:33.532391Z",
                    "name": "Joutsenlampi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Shot_01_027-A4.jpg",
                    "cropping": "320,0,1600,1281",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Jonas Lundqvist",
                    "alt_text": "Balettitanssija ja peilikuva",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-24T08:08:11.903830Z",
            "last_modified_time": "2021-02-22T11:52:21.689146Z",
            "date_published": null,
            "start_time": "2021-03-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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Joutsenlampi on maailman kuuluisin baletti, jossa yhdistyvät Tšaikovskin loistelias musiikki ja ikonisen kaunis visuaalinen maailma. ",
                "sv": "Svansjön, världens mest berömda balett, kombinerar Tjajkovskijs storslagna musik och en legendariskt vacker visuell värld. ",
                "en": "Swan Lake is the world’s most famous ballet, which combined Tchaikovsky’s magnificent music with a visual world of iconic beauty."
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Joutsenlampi on maailman kuuluisin baletti, jossa yhdistyvät Tšaikovskin loistelias musiikki ja ikonisen kaunis visuaalinen maailma. </p><p>Teoksella on pitkä historia myös Suomen kansallisbaletissa, joka esitti sen ensimmäisenä teoksenaan sata vuotta sitten.</p><p>Nyt Kansallisbalettiin saadaan David McAllisterin kokonaan uusi Joutsenlampi, joka kunnioittaa teoksen pitkiä perinteitä.</p><p>Suomen Kansallisooppera ja -baletti<br>26.2.-27.5.2021</p><p>Liput 15-129€, kesto 2 h 45 min<br>Esityksiä suositellaan yli 7-vuotiaille katsojille</p>",
                "sv": "<p>Svansjön, världens mest berömda balett, kombinerar Tjajkovskijs storslagna musik och en legendariskt vacker visuell värld. </p><p>Verket har en lång historia även på Finlands nationalbalett, som inledde sin verksamhet med Svansjön för hundra år sedan.</p><p>Nu sätter Finlands nationalbalett upp David McAllisters helt nya version av Svansjön,  som värnar om verkets långa anor.</p><p>Finlands Nationalopera och -balett<br>26.2.-27.5.2021</p><p>Biljetter 15-129€, längd 2 h 45 min<br>Föreställningarna rekommenderas från 7 år uppåt</p>",
                "en": "<p>Swan Lake is the world’s most famous ballet, which combined Tchaikovsky’s magnificent music with a visual world of iconic beauty. </p><p>It also has a long history at the Finnish National Ballet, where it was performed as its first production a hundred years ago.</p><p>Now, the Finnish National Ballet will present a brand-new version by David MacAllister.</p><p>Finnish National Opera and Ballet<br>26.2.-27.5.2021</p><p>Tickets 15-129€, duration 2 h 45 min<br>Recommended for over the age of 7 yrs</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/joutsenlampi/",
                "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/svansjon/",
                "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/swan-lake/"
            },
            "name": {
                "fi": "Joutsenlampi",
                "sv": "Svansjön",
                "en": "Swan Lake"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2wowvou/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3rjg7gc4",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20668/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13810/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?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": "EventPostponed",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "35/48€",
                        "en": "35/48€"
                    },
                    "info_url": {
                        "fi": "http://www.aleksanterinteatteri.fi",
                        "en": "http://www.aleksanterinteatteri.fi"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3rjg7jyu/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3rjg7kpa/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3rjg7lda/?format=api"
                }
            ],
            "images": [
                {
                    "id": 69086,
                    "license": "event_only",
                    "created_time": "2021-01-15T12:20:51.545763Z",
                    "last_modified_time": "2021-01-15T12:29:39.868040Z",
                    "name": "Aleksanterin teatteri",
                    "url": "http://api.hel.fi/linkedevents/media/images/4N2A3424.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Helsingin kaupunki, aineistopankki (c) Tuukka Jaromaa",
                    "alt_text": "Aleksanterin teatteri",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/69086/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-01-18T08:28:17.328853Z",
            "last_modified_time": "2021-02-12T12:17:06.209848Z",
            "date_published": null,
            "start_time": null,
            "end_time": null,
            "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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Amerikkalaisen nykysäveltäjän Philip Glassin vuoden 1983 mestariteos Akhnaten saa Suomen ensiesityksensä Ooppera Skaalan ja Opera BOXin yhteistuotantona.",
                "en": "The Finnish Ooppera Skaala and Opera BOX are performing the opera Akhnaten composed by Philip Glass in Alexander Theatre in February."
            },
            "provider": {
                "fi": "Aleksanterin teatteri",
                "en": "Alexander Theatre"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Amerikkalaisen nykysäveltäjän Philip Glassin vuoden 1983 mestariteos Akhnaten saa Suomen ensiesityksensä Ooppera Skaalan ja Opera BOXin yhteistuotantona. </p><p>Akhnaten kertoo n. 1350 e.a.a. Egyptiä 17 vuotta hallinneesta faarao Akhnatenista, joka toimi hallintokaudellaan muinaisen Egyptin kumouksellisena uudistajana. Libreton teokseen on luonut säveltäjä itse yhteistyössä muiden kirjoittajien kanssa, ja libreton pohjana on käytetty mm. Akhnatenin omia tekstejä, muinaisen Egyptin Kuolleiden kirjaa sekä Vanhan Testamentin Psalmia 104. </p><p>Glassin lumoavan minimalistinen musiikki vie kuulijan ajatukset muinaiseen faaraoiden Egyptiin. Esityksen orkestraatiossa säveltäjän hypnoottista ja ritualistista aikamatkaa säestää neljä kosketin- ja kolme lyömäsoittajaa. </p><p> 25-vuotistoimintavuottaan juhliva Ooppera Skaala on tuottanut useita Glassin muita teoksia Suomen ensiesityksinä. Akhnatenin suurtuotantoon mukaan tulee toinen rohkeista ohjauksista ja teosvalinnoista tunnettu helsinkiläinen vapaan kentän oopperatoimija Opera BOX.</p><p>Aleksanterin teatteri<br>18.-21.2.2021</p><p>Liput 35/48€ Ticketmasterista, kesto n. 3 h, sis. väliajan</p>",
                "en": "<p>The Finnish Ooppera Skaala and Opera BOX are performing the opera Akhnaten composed by Philip Glass in Alexander Theatre in February.</p><p>The opera tells about Pharaoh Akhnaten, who ruled Egypt approx. 1350 BCE  for 17 years being a revolutionary reformer.</p><p>The fascinating minimalist music of Philip Glass takes the audience to the ancient Egypt.</p><p>Alexander Theatre<br>18.-21.2.2021</p><p>Tickets 35/48€ from Ticketmaster<br>Duration approx. 3h, intermission included</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.aleksanterinteatteri.fi",
                "en": "http://www.aleksanterinteatteri.fi"
            },
            "name": {
                "fi": "Siirtyy: Akhnaten",
                "en": "Transferred: Akhnaten"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3rjg7gc4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2xi6myim",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20755/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11693/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2xi6mlka/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "55-88€",
                        "sv": "55-88€",
                        "en": "55-88€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/svenska-teatern-i-helsingfors/mary-poppins-2594661/",
                        "sv": "https://www.lippu.fi/artist/svenska-teatern-i-helsingfors/mary-poppins-2594661/",
                        "en": "https://www.lippu.fi/artist/svenska-teatern-i-helsingfors/mary-poppins-2594661/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64393,
                    "license": "event_only",
                    "created_time": "2020-05-19T11:14:27.012879Z",
                    "last_modified_time": "2020-05-19T11:14:27.012902Z",
                    "name": "Mary Poppins",
                    "url": "http://api.hel.fi/linkedevents/media/images/MP-banner.jpg",
                    "cropping": "560,0,1360,800",
                    "photographer_name": "Svenska Teatern",
                    "alt_text": "Nainen lentää sateenvarjon ja matkalaukun kanssa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64393/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2020-10-29T13:08:47.315470Z",
            "last_modified_time": "2020-11-23T11:13:13.843604Z",
            "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": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Maija Poppanen lentää jälleen kattojen yllä Lontoossa, mutta tällä kertaa se koetaan Svenska Teaternin kauniissa salongissa. ",
                "sv": "Mary Poppins flyger över hustaken i London igen, men det är inne i Svenska Teaterns vackra salong man får uppleva det hela som magisk teater",
                "en": "Mary Poppins flies once more over the rooftops of London, but Svenska Teatern will experience it all inside the beautiful theatre, in a magical, colourful"
            },
            "provider": {
                "fi": "Svenska Teatern",
                "sv": "Svenska Teatern",
                "en": "Svenska Teatern"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Maija Poppanen lentää jälleen kattojen yllä Lontoossa, mutta tällä kertaa se koetaan Svenska Teaternin kauniissa salongissa. </p><p>Luvassa on elämys värikkäässä ja mielikuvituksellisessa maailmassa. Musikaalin lumoava historia, unohtumattomat laulut ja häikäisevät tanssinumerot ovat lumonneet koko maailman.</p><p>Musikaali maailman ensimmäisestä ”supernannysta'” sai ensi-iltansa Lontoossa ja se  perustuu P.L. Traversin kirjoihin sekä klassiseen Walt Disney-elokuvaan.</p><p>Svenska Teatern, Suuri näyttämö<br>Ensi-ilta 3.10.2020<br>(Esitykset 23.11.-13.12.2020 ovat peruutettu)</p><p>Koronaepidemian vuoksi esityspäivämääriin ja -aikoihin saattaa tulla muutoksia, joten tarkemmat tiedot saa suoraan teatterista www.svenskateatern.fi</p><p>Liput 55-88€ Lippupisteestä, kesto 3 h, sis. väliajan</p><p>Esitys on ruotsinkielinen, tekstitys suomeksi, ruotsiksi ja englanniksi</p>",
                "sv": "<p>Mary Poppins flyger över hustaken i London igen, men det är inne i Svenska Teaterns vackra salong man får uppleva det hela som magisk teater i en färgsprakande och fantasifylld värld. </p><p>Mary Poppins har en förtrollande historia, oförglömliga låtar och bländande dansnummer som redan har charmat och fängslat hela världen.  </p><p>Musikalen om denna världens främsta ”supernanny” hade urpremiär i London 2004 och den är baserad på böckerna av P.L. Travers och den klassiska Walt Disney-filmen Mary Poppins. </p><p>Svenska Teatern, Stora scenen<br>Premiär 3.10.2020<br>(Föreställningarna 23.11.-13.12.2020 är annulerade)</p><p>På grund av den rådande epidemin blir teatern tvungen att göra ändringar i spelplanen. Mera information fås på www.svenskateatern.fi </p><p>Biljetter 55-88€ från Lippupiste, längd 3 h med paus</p><p>Framförs på svenska, textning på svenska, finska och engelska</p>",
                "en": "<p>Mary Poppins flies once more over the rooftops of London, but Svenska Teatern will experience it all inside the beautiful theatre, in a magical, colourful, imaginative world. </p><p>Svenska Teatern presents a musical with tremendously beautiful costumes and a set rich in detail.</p><p>Mary Poppins is an enchanting story with unforgettable songs and dazzling dance acts that has charmed the whole world.</p><p>The musical about the world’s leading “supernanny” premiered in London in 2004 and it is based on the books by P.L. Travers and the classic Walt Disney film Mary Poppins. </p><p>Swedish Theatre, Main Scene<br>Premiere  3.10.2020<br>(The performances 23.11.-13.12.2020 are cancelled)</p><p>Due to the covid-19 epidemy, the date scheduls can be changed. More information on www.svenskateatern.fi</p><p>Tickets 55-88€ from Lippupiste, duration 3 h with intermission</p><p>Performed in Swedish, surtitles in English, Swedish and Finnish</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://svenskateatern.fi/fi/ohjelmisto/mary_poppins/",
                "sv": "https://svenskateatern.fi/sv/repertoar/mary_poppins/",
                "en": "https://svenskateatern.fi/en/mary_poppins/"
            },
            "name": {
                "fi": "Peruutettu: Mary Poppins - Maija Poppanen",
                "sv": "Annulerad: Mary Poppins",
                "en": "Cancelled: Mary Poppins"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2xi6myim/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2tbad7vm",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2tbadud4/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "39-49€"
                    },
                    "info_url": {
                        "fi": "https://kansallisteatteri.fi/esitys/dosentit/"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 67537,
                    "license": "event_only",
                    "created_time": "2020-10-16T08:19:31.353035Z",
                    "last_modified_time": "2020-10-16T08:19:31.353058Z",
                    "name": "Dosentit",
                    "url": "http://api.hel.fi/linkedevents/media/images/49966716352_53e5c7868b_k-1.jpg",
                    "cropping": "472,0,1448,977",
                    "photographer_name": "Suomen Kansallisteatteri (c) Katri Naukkarinen",
                    "alt_text": "Ihmisiä kirjastossa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/67537/?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-10-16T08:22:09.081831Z",
            "last_modified_time": "2020-11-23T10:50:15.014971Z",
            "date_published": null,
            "start_time": "2020-12-07T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Juha Jokelan uutuusteos Dosentit on terävä aikalaisdraama akateemisen maailman jännitteistä."
            },
            "provider": {
                "fi": "Suomen Kansallisteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Juha Jokelan uutuusteos Dosentit on terävä aikalaisdraama akateemisen maailman jännitteistä.</p><p>Sosiaalipsykologian professori Johanna Virtanen alkaa tutkia yliopistoyhteisön tilaa: miksi niin moni kollega voi huonosti tai lähtee parempien olosuhteiden perään ulkomaille? Kesken tutkimustyönsä Johanna huomaa olevansa jumissa.  Onko kyse työuupumuksesta vai mistä?</p><p>Johanna pyytää työhön mukaan entisen oppilaansa Fiona Eskolan, jonka suorasanaisuus saa Johannan toistuvasti varpailleen. Työparin tutkimuksen pohjalta tehty kirja herättää vilkasta keskustelua julkisuudessa, mutta yliopiston johto ei tunnu olevan kiinnostunut hankkeen tuloksista. </p><p>Johannan tutkijaidentiteetti joutuu kovaan testiin, kun sosiaalisen median pimeimmät nurkat heräävät ja konflikti yliopiston johdon kanssa syvenee. Miten pitää kiinni opin ja sivistyksen ihanteista maailmassa, jossa oikean tiedon merkitys hälvenee ja vain kovimmin huutavat saavat äänensä kuuluviin?</p><p>Suomen Kansallisteatteri, Suuri näyttämö<br>Kantaesitys 25.11.2020</p><p>Liput 39-49€ Lippupisteestä</p><p>Kansallisteatterin näytännöt perutaan kolmeksi viikoksi 23.11.-13.12. osana koronarajoitustoimia. Kansallisteatteri noudattaa viranomaisten määräyksiä ja toimii niiden mukaisesti. Kansallisteatteri viestii tilanteesta verkkosivuillaan heti kun uutta tiedotettavaa tulee.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://kansallisteatteri.fi/esitys/dosentit/"
            },
            "name": {
                "fi": "Peruutettu: Dosentit"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2tbad7vm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afwhbymw6e",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20784/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13810/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afwhbymq2u/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15-119€",
                        "sv": "15-119€",
                        "en": "15-119€"
                    },
                    "info_url": {
                        "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/jevgeni-onegin/",
                        "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/jevgenij-onegin/",
                        "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/eugene-onegin/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 57544,
                    "license": "event_only",
                    "created_time": "2019-08-08T10:47:13.551903Z",
                    "last_modified_time": "2019-08-08T10:47:13.551925Z",
                    "name": "Jevgeni Onegin",
                    "url": "http://api.hel.fi/linkedevents/media/images/7330-Jevgeni-Onegin_17-03-0.jpg",
                    "cropping": "263,0,1657,1394",
                    "photographer_name": "Suoman Kansallisooppera ja -baletti",
                    "alt_text": null,
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/57544/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/ru/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2019-08-08T10:58:48.184663Z",
            "last_modified_time": "2020-03-26T13:05:01.637893Z",
            "date_published": null,
            "start_time": "2020-04-16T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Kun Tšaikovskin pakahduttavan kaunis musiikki yhdistyy Pushkinin täyttymätöntä kaipausta henkivään runoelmaan,",
                "sv": "Då Tjajkovskijs andlöst sköna musik fogades till den ouppfyllda längtan i Pusjkins poem föddes ett av hela operalitteraturens mest gripande verk.",
                "en": "Tchaikovsky’s achingly beautiful music combined with Pushkin’s poem of unfulfilled longing resulted in one of the most moving works in the history of opera."
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kun Tšaikovskin pakahduttavan kaunis musiikki yhdistyy Pushkinin täyttymätöntä kaipausta henkivään runoelmaan, tuloksena on yksi koko oopperakirjallisuuden koskettavimpia teoksia. </p><p>Marco Arturo Marellin näkemyksellinen tulkinta kaihontäyteisestä oopperasta tarjoaa arjen yläpuolelle vievää kauneutta.</p><p>Suomen Kansallisooppera ja -baletti</p><p>16.4. klo 19<br>18.4. klo 19<br>24.4. klo 19</p><p>Liput 15-119€</p><p>Esitetään venäjäksi, tekstitys suomeksi, ruotsiksi ja englanniksi</p><p>Esityksiä suositellaan yli 12-vuotiaille katsojille</p>",
                "sv": "<p>Då Tjajkovskijs andlöst sköna musik fogades till den ouppfyllda längtan i Pusjkins poem föddes ett av hela operalitteraturens mest gripande verk. </p><p>I händerna på Marco Arturo Marelli får denna längtansfulla opera en skön och visionär tolkning, som domineras av den desillusionerade Onegins sorgsna minnen.</p><p>Finlands Nationalopera och -balett</p><p>16.4. kl 19<br>18.4. kl 19<br>24.4. kl 19</p><p>Biljetter 15-119€</p><p>Framförs på ryska, textning på svenska, engelska och finska</p><p>Åldersrekommendation över 12 år</p>",
                "en": "<p>Tchaikovsky’s achingly beautiful music combined with Pushkin’s poem of unfulfilled longing resulted in one of the most moving works in the history of opera. </p><p>This beautiful and insightful production directed by Marco Arturo Marelli focuses on the wistful memories of Onegin, weary with his life.</p><p>Finnish National Opera and Ballet</p><p>16.4. at 19.00<br>18.4. at 19.00<br>24.4. at 19.00</p><p>Tickets 15-119€</p><p>Performed in Russian, surtitles in English, Finnish and Swedish</p><p>Recommended for children over the age of 12</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/jevgeni-onegin/",
                "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/jevgenij-onegin/",
                "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/eugene-onegin/"
            },
            "name": {
                "fi": "Peruttu: Jevgeni Onegin",
                "sv": "Annulerad: Jevgenij Onegin",
                "en": "Cancelled: Eugene Onegin"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afwhbymw6e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af3rtrrrbq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20668/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p29817/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3rtrrmzu/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "38/35€"
                    },
                    "info_url": {
                        "fi": "https://www.aleksanterinteatteri.fi/"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 69086,
                    "license": "event_only",
                    "created_time": "2021-01-15T12:20:51.545763Z",
                    "last_modified_time": "2021-01-15T12:29:39.868040Z",
                    "name": "Aleksanterin teatteri",
                    "url": "http://api.hel.fi/linkedevents/media/images/4N2A3424.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Helsingin kaupunki, aineistopankki (c) Tuukka Jaromaa",
                    "alt_text": "Aleksanterin teatteri",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/69086/?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": "2021-01-19T08:32:35.105565Z",
            "last_modified_time": "2021-02-24T11:40:49.056856Z",
            "date_published": null,
            "start_time": "2021-04-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Laulavat näyttelijät Maria Lund ja Päivi Pylvänäinen tarjoavat hajuvettä ja lihapullaa koko rahan edestä. "
            },
            "provider": {
                "fi": "Aleksanterin teatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Laulavat näyttelijät Maria Lund ja Päivi Pylvänäinen tarjoavat hajuvettä ja lihapullaa koko rahan edestä. </p><p>Esityksessä on valheen sävyttämiä kertomuksia oikeasta elämästä, melkein tositapahtumiin perustuvaa sanailua ja laulua Naisen eloonjäämisyrityksestä. </p><p>Tunteen myllerryksestä toiseen, kansanlaulujen kautta rokkiin ja oopperasta takaisin iskelmään.</p><p>Aleksanterin teatteri<br>20.-24.4.2021</p><p>Liput 38/35€ Ticketmasterista</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.aleksanterinteatteri.fi"
            },
            "name": {
                "fi": "Hajuvettä ja lihapullia"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af3rtrrrbq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afy2dssuya",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20784/?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:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2dssod4/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15-109€",
                        "sv": "15-109€",
                        "en": "15-109€"
                    },
                    "info_url": {
                        "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/pahkinansarkija-ja-hiirikuningas/",
                        "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/notknapparen-och-rattkungen/",
                        "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/the-nutcracker-and-the-mouse-king/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64201,
                    "license": "event_only",
                    "created_time": "2020-04-28T12:15:03.573076Z",
                    "last_modified_time": "2020-04-28T12:15:03.573109Z",
                    "name": "Pähkinänsärkijä ja Hiirikuningas",
                    "url": "http://api.hel.fi/linkedevents/media/images/6660-Nut-1181.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Sakari Viika",
                    "alt_text": "Balettitanssijoita",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2020-04-22T12:08:43.979124Z",
            "last_modified_time": "2020-11-30T07:53:22.200829Z",
            "date_published": null,
            "start_time": "2020-12-16T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Baletinystävien vuotuinen perinne jatkuu, kun Pähkinänsärkijä ja Hiirikuningas palaa Kansallisoopperan ohjelmistoon. ",
                "sv": "Balettfantasternas årliga tradition lever vidare i och med att Nötknäpparen och Råttkungen återkommer på Nationaloperans repertoar. ",
                "en": "Nutcracker returns in a Christmas run that has by now become a tradition for friends of ballet. "
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Baletinystävien vuotuinen perinne jatkuu, kun Pähkinänsärkijä ja Hiirikuningas palaa Kansallisoopperan ohjelmistoon. </p><p>Tšaikovskin lumoava musiikki, sekä taianomaiset lavasteet ja puvut vievät katsojansa kauas joulukiireiden keskeltä. </p><p>Tarinassa talvisessa Porvoossa asuva Klaara pääsee jouluyönä satumaiselle matkalle, jossa hän kohtaa niin hiiriarmeijan, eksoottisia kaukomaiden vieraita kuin pähkinänsärkijäksi taiotun prinssinkin. </p><p>Suomen Kansallisooppera ja -baletti<br>4.-22.12. (peruutettu 23.11.-18.12.)</p><p>Liput 15-109€</p><p>Ikäsuositus yli 5-vuotiaille, kesto 2 h 20 min</p>",
                "sv": "<p>Balettfantasternas årliga tradition lever vidare i och med att Nötknäpparen och Råttkungen återkommer på Nationaloperans repertoar. </p><p>Tjajkovskijs fängslande musik, den magiska dekoren och kostymerna tar åskådarna till en plats långt borta från julstressen. </p><p>Klaara, som bor i ett vintrigt Borgå, får på julnatten uppleva en sagolik resa under vilken hon möter en armé av råttor, besökare från exotiska länder och en prins som blivit förtrollad till en nötknäppare. </p><p>Finlands Nationalopera och -balett<br>4.-22.12. (annulerad 23.11.-18.12.)</p><p>Biljetter 15-109€</p><p>Åldersrekommendation över 5 år, längd 2 h 20 min</p>",
                "en": "<p>Nutcracker returns in a Christmas run that has by now become a tradition for friends of ballet. </p><p>Tchaikovsky's enchanting music and the magical sets and costumes transport the viewer far away from Christmas stress. </p><p>The story is set in wintery Porvoo, where Klaara is invited on a fantastic journey on Christmas night. She encounters an army of mice, exotic visitors from far-off lands and a nutcracker who is actually a Prince under a magic spell. </p><p>Finnish National Opera and Ballet<br>4.-22.12. (cancelled 23.11.-18.12.)</p><p>Tickets 15-109€</p><p>Age recommendation over 5 yrs, duration 2 h 20 min</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/pahkinansarkija-ja-hiirikuningas/",
                "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/notknapparen-och-rattkungen/",
                "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/the-nutcracker-and-the-mouse-king/"
            },
            "name": {
                "fi": "Peruutettu: Pähkinänsärkijä ja Hiirikuningas",
                "sv": "Inställt: Nötknäpparen och Råttkungen",
                "en": "Cancelled: The Nutcracker and the Mouse King"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2dssuya/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afy2wowwja",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20784/?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:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2wowp4a/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15-129€",
                        "sv": "15-129€",
                        "en": "15-129€"
                    },
                    "info_url": {
                        "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/joutsenlampi/",
                        "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/svansjon/",
                        "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/swan-lake/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64172,
                    "license": "event_only",
                    "created_time": "2020-04-24T12:18:33.532369Z",
                    "last_modified_time": "2020-04-24T12:18:33.532391Z",
                    "name": "Joutsenlampi",
                    "url": "http://api.hel.fi/linkedevents/media/images/Shot_01_027-A4.jpg",
                    "cropping": "320,0,1600,1281",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Jonas Lundqvist",
                    "alt_text": "Balettitanssija ja peilikuva",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-24T08:08:12.115930Z",
            "last_modified_time": "2021-02-22T11:52:22.262119Z",
            "date_published": null,
            "start_time": "2021-03-19T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Joutsenlampi on maailman kuuluisin baletti, jossa yhdistyvät Tšaikovskin loistelias musiikki ja ikonisen kaunis visuaalinen maailma. ",
                "sv": "Svansjön, världens mest berömda balett, kombinerar Tjajkovskijs storslagna musik och en legendariskt vacker visuell värld. ",
                "en": "Swan Lake is the world’s most famous ballet, which combined Tchaikovsky’s magnificent music with a visual world of iconic beauty."
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Joutsenlampi on maailman kuuluisin baletti, jossa yhdistyvät Tšaikovskin loistelias musiikki ja ikonisen kaunis visuaalinen maailma. </p><p>Teoksella on pitkä historia myös Suomen kansallisbaletissa, joka esitti sen ensimmäisenä teoksenaan sata vuotta sitten.</p><p>Nyt Kansallisbalettiin saadaan David McAllisterin kokonaan uusi Joutsenlampi, joka kunnioittaa teoksen pitkiä perinteitä.</p><p>Suomen Kansallisooppera ja -baletti<br>26.2.-27.5.2021</p><p>Liput 15-129€, kesto 2 h 45 min<br>Esityksiä suositellaan yli 7-vuotiaille katsojille</p>",
                "sv": "<p>Svansjön, världens mest berömda balett, kombinerar Tjajkovskijs storslagna musik och en legendariskt vacker visuell värld. </p><p>Verket har en lång historia även på Finlands nationalbalett, som inledde sin verksamhet med Svansjön för hundra år sedan.</p><p>Nu sätter Finlands nationalbalett upp David McAllisters helt nya version av Svansjön,  som värnar om verkets långa anor.</p><p>Finlands Nationalopera och -balett<br>26.2.-27.5.2021</p><p>Biljetter 15-129€, längd 2 h 45 min<br>Föreställningarna rekommenderas från 7 år uppåt</p>",
                "en": "<p>Swan Lake is the world’s most famous ballet, which combined Tchaikovsky’s magnificent music with a visual world of iconic beauty. </p><p>It also has a long history at the Finnish National Ballet, where it was performed as its first production a hundred years ago.</p><p>Now, the Finnish National Ballet will present a brand-new version by David MacAllister.</p><p>Finnish National Opera and Ballet<br>26.2.-27.5.2021</p><p>Tickets 15-129€, duration 2 h 45 min<br>Recommended for over the age of 7 yrs</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/joutsenlampi/",
                "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/svansjon/",
                "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/swan-lake/"
            },
            "name": {
                "fi": "Joutsenlampi",
                "sv": "Svansjön",
                "en": "Swan Lake"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2wowwja/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afyfyvgbpi",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20435/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3984/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyfyvfw5y/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15€",
                        "en": "15€"
                    },
                    "info_url": {
                        "fi": "https://holvi.com/shop/raekalliocorp-kehys/",
                        "en": "https://holvi.com/shop/raekalliocorp-kehys/"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 63014,
                    "license": "event_only",
                    "created_time": "2020-02-19T06:48:02.873563Z",
                    "last_modified_time": "2020-02-19T06:48:02.873599Z",
                    "name": "Valtteri Raekallio: Kehys",
                    "url": "http://api.hel.fi/linkedevents/media/images/Kehys-pieni-jpg.jpg",
                    "cropping": "479,0,1441,962",
                    "photographer_name": "Valtteri Raekallio Corp. (c) Valtteri Raekallio",
                    "alt_text": "Valtteri Raekallio: Kehys",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/63014/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-02-19T07:23:43.365152Z",
            "last_modified_time": "2020-03-27T09:37:14.819857Z",
            "date_published": null,
            "start_time": "2020-05-23T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Valtteri Raekallion fyysistä mielenteatteria esitetään Taidekoti Kirpilässä. ",
                "en": "Valtteri Raekallio's physical theatre of the mind will be performed at the Kirpilä Art Collection. "
            },
            "provider": {
                "fi": "Raekallio Corp. / Pohjoinen liike ry",
                "en": "Raekallio Corp. / Pohjoinen liike ry"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Valtteri Raekallion fyysistä mielenteatteria esitetään Taidekoti Kirpilässä. </p><p>Uuden paikkasidonnaisen tanssiteoksen taiteellisena suunnittelijana toimii Valtteri Raekallio ja käsikirjoittajina Raekallion lisäksi Jaakko Yli-Juonikas.</p><p>Taidekoti Kirpilä<br>Esitykset 7.-23.5. (peruutettu) ja 3.9.-2.10. klo 18.00 ja 19.30</p><p>Liput 15€ Holvi Shopista</p>",
                "en": "<p>Valtteri Raekallio's physical theatre of the mind will be performed at the Kirpilä Art Collection. </p><p>New location-specific dance piece, Frame, is designed by Valtteri Raekallio and written by Raekallio together with Jaakko Yli-Juonikas. </p><p>Kirpilä Art Collection<br>Performances 7.-23.5. (cancelled) and 3.9.-2.10. at 18.00 and 19.30</p><p>Tickets 15€ from Holvi Shop</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://www.raekallio.fi/kehys",
                "en": "https://www.raekallio.fi/kehys"
            },
            "name": {
                "fi": "Peruttu: Raekallio Corp: Kehys",
                "en": "Cancelled: Raekallio Corp: Frame"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afyfyvgbpi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afwen7pmiq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20784/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helfi:12/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10218/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afwen7pdo4/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15-99€",
                        "sv": "15-99€",
                        "en": "15-99€"
                    },
                    "info_url": {
                        "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/liisa-ihmemaassa/",
                        "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/alice-i-underla",
                        "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/alice-in-wonderland/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 57319,
                    "license": "event_only",
                    "created_time": "2019-07-31T07:35:56.671706Z",
                    "last_modified_time": "2019-07-31T07:35:56.671727Z",
                    "name": "Liisa Ihmemaassa",
                    "url": "http://api.hel.fi/linkedevents/media/images/7176-_19A3860-63.jpg",
                    "cropping": "320,0,1600,1280",
                    "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/57319/?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": "2019-07-31T07:45:41.964115Z",
            "last_modified_time": "2020-03-26T13:10:41.334716Z",
            "date_published": null,
            "start_time": "2020-05-22T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Liisa Ihmemaassa on klassista balettia kauneimmillaan, sisältäen ihastuttavaa musiikkia ja satukirjan sivuille vievä lavastus ja puvustus.",
                "sv": "Alice i Underlandet är klassisk balett som skönast, förtjusande musik och en scenografi och kostymering som för direkt till sagobokens sidor.",
                "en": "With brilliantly beautiful classical ballet, mesmerizing music, and sets and costumes fit for a fairy tale, "
            },
            "provider": {
                "fi": "Suomen Kansallisbaletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Ballet"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Liisa Ihmemaassa on klassista balettia kauneimmillaan, sisältäen ihastuttavaa musiikkia ja satukirjan sivuille vievä lavastus ja puvustus. Liisa Ihmemaassa on baletti, joka lumoaa kaikenikäiset katsojansa. </p><p>Jorma Elon koreografiassa päänäyttämön valtaavat värikkäät satuhahmot Lewis Carrollin kirjoista Liisa Ihmemaassa ja Liisan seikkailut peilimaailmassa.</p><p>Baletti palaa elokuussa 2019 Kansallisbaletin ohjelmistoon uudistettuna, entistä hehkuvampana versiona.</p><p>Suomen Kansallisooppera ja -baletti</p><p>2019:<br>23.8. klo 19<br>24.8. klo 14<br>29.8. klo 19<br>31.8. klo 14</p><p>4.9. klo 19<br>5.9. klo 19<br>12.9. klo 19</p><p>2020:<br>13.5. klo 19<br>16.5. klo 19<br>22.5. klo 19<br>28.5. klo 19</p><p>Balettia suositellaan yli 6-vuotiaille katsojille</p>",
                "sv": "<p>Alice i Underlandet är klassisk balett som skönast, förtjusande musik och en scenografi och kostymering som för direkt till sagobokens sidor. Alice i Underlandet är en balett som förtrollar åskådare i alla åldrar. </p><p>I Jorma Elos koreografi intas huvudscenen av enorma färggranna sagofigurer ur Lewis Carrolls böcker Alice i Underlandet och Alice i Spegellandet.</p><p>Baletten återkommer i augusti 2019 till Nationalbalettens repertoar i förnyad version mer sprakande än någonsin. </p><p>Finlands Nationalopera och -balett</p><p>2019:<br>23.8. kl 19<br>24.8. kl 14<br>29.8. kl 19<br>31.8. kl 14</p><p>4.9. kl 19<br>5.9. kl 19<br>12.9. kl 19</p><p>2020:<br>13.5. kl 19<br>16.5. kl 19<br>22.5. kl 19<br>28.5. kl 19</p><p>Åldersrekommendation över 6 år</p>",
                "en": "<p>With brilliantly beautiful classical ballet, mesmerizing music, and sets and costumes fit for a fairy tale, Alice in Wonderland is a ballet sure to charm visitors of all ages.</p><p>Jorma Elo’s choreography marches Lewis Carroll’s colourful characters from the pages of Alice in Wonderland and Through the Looking Glass to the Main Stage of the Finnish National Ballet.</p><p>The ballet returns to the repertoire in August 2019 with a new version that shines even brighter than the last.</p><p>Finnish National Opera and Ballet</p><p>2019:<br>23.8. at 19.00<br>24.8. at 14.00<br>29.8. at 19.00<br>31.8. at 14.00</p><p>4.9. at 19.00<br>5.9. at 19.00<br>12.9. at 19.00</p><p>2020:<br>13.5. at 19.00<br>16.5. at 19.00<br>22.5. at 19.00<br>28.5. at 19.00</p><p>Recommended for children over the age of 6</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/liisa-ihmemaassa/",
                "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/alice-i-underlandet/",
                "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/alice-in-wonderland/"
            },
            "name": {
                "fi": "Peruttu: Liisa Ihmemaassa",
                "sv": "Annulerad: Alice i Underlandet",
                "en": "Cancelled: Alice in Wonderland"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afwen7pmiq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:af2ta47ecq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20879/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2ta463ba/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "39-49€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/suomen-kansallisteatteri/kaikki-aeidistaeni-2765204/"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64381,
                    "license": "event_only",
                    "created_time": "2020-05-19T07:56:21.693249Z",
                    "last_modified_time": "2020-05-19T07:56:21.693269Z",
                    "name": "Kaikki äidistäni",
                    "url": "http://api.hel.fi/linkedevents/media/images/49727236296_47b3a7658f_k.jpg",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Suomen Kansallisteatteri (c) Tommi Mattila",
                    "alt_text": "Nainen seisoo naisen kuvan edessä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64381/?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-10-16T08:08:22.823861Z",
            "last_modified_time": "2020-11-23T11:47:17.011670Z",
            "date_published": null,
            "start_time": "2020-12-03T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Pedro Almodóvarin elokuvaklassikkoon perustuva Kaikki äidistäni on pakahduttavan kaunis ylistyslaulu äitiydelle ja naisten voimalle."
            },
            "provider": {
                "fi": "Suomen Kansallisteatteri"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pedro Almodóvarin elokuvaklassikkoon perustuva Kaikki äidistäni on pakahduttavan kaunis ylistyslaulu äitiydelle ja naisten voimalle.</p><p>Kun teini-ikäinen Esteban joutuu syntymäpäivänään traagiseen onnettomuuteen, hänen äitinsä Manuela päättää täyttää pojan viimeiseksi jääneen toiveen. Hän lähtee Madridista Barcelonaan etsimään isää, joka jäi Estebanille tuntemattomaksi. </p><p>Barcelonassa Manuelan seuraan liittyy prostituoituna itseään elättävä Agrado, nuori katolinen sisar Rosa sekä näyttelijätärdiiva Huma Rojo. Huma esiintyy Blanche Dubois’n roolissa Viettelysten vaunussa ‒ näytelmässä, jolla tuntuu olevan kohtalonomainen yhteys Manuelan elämään. </p><p>Barcelonan taivaan alla erilaisten naisten tiet kohtaavat koskettavan inhimillisellä tavalla.</p><p>Suomen Kansallisteatteri, Suuri näyttämö<br>Kantaesitys 16.9.2020</p><p>Liput 39-49€ Lippupisteestä</p><p>Kansallisteatterin näytännöt perutaan kolmeksi viikoksi 23.11.-13.12. osana koronarajoitustoimia. Kansallisteatteri noudattaa viranomaisten määräyksiä ja toimii niiden mukaisesti. Kansallisteatteri viestii tilanteesta verkkosivuillaan heti kun uutta tiedotettavaa tulee.</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://kansallisteatteri.fi/esitys/kaikki-aidistani/"
            },
            "name": {
                "fi": "Peruutettu: Kaikki äidistäni"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:af2ta47ecq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afy2xkzlvq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:20784/?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:p360/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6421/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2xkzhiu/?format=api"
            },
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15-109€",
                        "sv": "15-109€",
                        "en": "15-109€"
                    },
                    "info_url": {
                        "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/iloinen-leski/",
                        "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/glada-ankan/",
                        "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/the-merry-widow/"
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64161,
                    "license": "event_only",
                    "created_time": "2020-04-24T09:52:38.816687Z",
                    "last_modified_time": "2020-04-24T09:52:38.816709Z",
                    "name": "Iloinen leski",
                    "url": "http://api.hel.fi/linkedevents/media/images/ILOINENLESKIVAAKA8bit.jpg",
                    "cropping": "192,0,1728,1535",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Kanerva Mantila",
                    "alt_text": "Iloisia ihmisiä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64161/?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-04-24T10:10:54.007400Z",
            "last_modified_time": "2020-11-23T06:45:10.708278Z",
            "date_published": null,
            "start_time": "2020-11-26T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "short_description": {
                "fi": "Hanna Glavari on rikas leski, jolle tarvittaisiin aviomies. Oiva ehdokas olisi kreivi Danilo, etenkin kun kaksikko rakastaa toisiaan. ",
                "sv": "Hanna Glavari är en rik änka som skulle behöva få en ny make. En perfekt match vore greve Danilo, speciellt eftersom de två älskar varandra. ",
                "en": "Hanna Glavari is a rich widow in need of a husband. Count Danilo is the obvious candidate, particularly as the couple are already in love."
            },
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Hanna Glavari on rikas leski, jolle tarvittaisiin aviomies. Oiva ehdokas olisi kreivi Danilo, etenkin kun kaksikko rakastaa toisiaan. Mutta Danilo kieltäytyy kosimasta Hannaa tämän rikkauden tähden.</p><p>Äveriään lesken naimahuolia käsittelevä operetti ei syyttä ole maailman suosituin. Franz Lehárin kupliva teos tarjoaa ehtaa vanhan ajan glamouria, aateliston ilottelua, tarttuvia melodioita ja can-cania. </p><p>Suomen Kansallisooppera - ja baletti<br>20.11.-31.12.2020</p><p>Liput 15-109€, kesto 2 h 40 min<br>Esityskieli suomi, tekstitys suomeksi, ruotsiksi ja englanniksi</p><p>Suositellaan yli 12-vuotiaille</p>",
                "sv": "<p>Hanna Glavari är en rik änka som skulle behöva få en ny make. En perfekt match vore greve Danilo, speciellt eftersom de två älskar varandra. Men Danilo vägrar att fria till Hanna för hennes förmögenhets skull.</p><p>Operetten om den välbärgade änkans giftermålsbekymmer är inte utan orsak världens populäraste. Franz Lehárs bubblande verk bjuder på äkta gammaldags glamour, adelns förlustelser, smittande melodier och cancan. </p><p>Finlands Nationalopera och -balett<br>20.11.-31.12.2020</p><p>Biljetter 15-109€, längd 2 h 40 min<br>Framförs på finska, textning på svenska, finska och engelska</p><p>Rekommenderas för 12 år uppåt</p>",
                "en": "<p>Hanna Glavari is a rich widow in need of a husband. Count Danilo is the obvious candidate, particularly as the couple are already in love. However, Danilo refuses to propose to Hanna because of her riches.</p><p>It’s no surprise that this story of a wealthy widow’s marriage worries has become the world’s favourite operetta. Franz Lehár’s bright and bubbly work offers genuine old-school glamour, merrymaking with Parisian nobility, catchy melodies, and can-can. </p><p>Finnish National Opera and Ballet<br>20.11.-31.12.2020</p><p>Tickets 15-109€, duration 2 h 40 min<br>Performed in Finnish, surtitles in English, Finnish and Swedish</p><p>Recommended for over the age of 12</p>"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/ohjelmisto-ja-liput/iloinen-leski/",
                "sv": "https://oopperabaletti.fi/sv/repertoar-och-biljetter/glada-ankan/",
                "en": "https://oopperabaletti.fi/en/repertoire-and-tickets/the-merry-widow/"
            },
            "name": {
                "fi": "Peruutettu: Iloinen leski",
                "sv": "Annulerad: Glada änkan",
                "en": "Cancelled: The Merry Widow"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afy2xkzlvq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}