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

{
    "meta": {
        "count": 10948,
        "next": "https://api.hel.fi/linkedevents/v1/event/?data_source=espoo&format=api&page=2",
        "previous": null
    },
    "data": [
        {
            "id": "espoo:192182",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/2848671",
                        "sv": "https://www.lippu.fi/eventseries/2848671",
                        "en": "https://www.lippu.fi/eventseries/2848671"
                    },
                    "description": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 68409,
                    "license": "cc_by",
                    "created_time": "2020-12-01T09:12:05.607632Z",
                    "last_modified_time": "2020-12-01T09:12:05.607656Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{7CDE4CFD-F6AF-44D6-8034-3AC7BFEFB595}/133275",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "https://api.hel.fi/linkedevents/v1/image/68409/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-03-25T16:11:57.826317Z",
            "last_modified_time": "2021-09-01T08:14:23.367695Z",
            "date_published": "2021-03-25T14:07:00Z",
            "start_time": "2021-09-03T15:00:00Z",
            "end_time": "2021-09-03T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ennakkoon 28.4.2021 tapahtumaan ostetut liput käyvät tähän uuteen ajankohtaan sellaisenaan. Lipunostaneille on lähtenyt viesti turvajärjestelyistä.",
                "sv": "Biljetter köpta till 28.4.2021 kan användas som sådana till det här nya datumet.",
                "en": "Tickets purchased for 28.4.2021 can be used for this replacing date."
            },
            "location_extra_info": {
                "fi": "Sellosali",
                "sv": "Sellosalen",
                "en": "Sello Hall"
            },
            "provider": null,
            "name": {
                "fi": "Irina (LOPPUUNMYYTY)",
                "sv": "Irina",
                "en": "Irina"
            },
            "info_url": null,
            "description": {
                "fi": "<p> <strong> <br> <br>\nPe 3.9.2021 klo 18 (LOPPUUNMYYTY)</strong>\n</p><p>Ennakkoon 28.4.2021 tapahtumaan ostetut liput käyvät tähän uuteen ajankohtaan sellaisenaan. <br>\n-</p> 20.8.2021 voimaan astuneiden aluehallintoviraston määräysten mukaisesti toteutamme tässä tapahtumassa seuraavat turvallisuustoimenpiteet: - yleisö on jaettu 25 henkilön katsomolohkoihin - katsomolohkojen sisällä on 2 metrin turvavälit lippunsa samanaikaisesti ostaneiden seurueiden välillä - pintoja desinfioidaan säännöllisesti - edellytämme kasvomaskien ja käsidesin käyttöä Lipunostajille on toimitettu tarkemmat ohjeet lohkojärjestelyistä ja aikatauluista. Mikäli viesti ei ole tavoittanut sinua, olethan pikimmiten meihin yhteyksissä sellosali@espoo.fi. Yhteistyössä voimme jälleen päästä turvallisten kulttuurielämysten äärelle. Osaava salihenkilökuntamme opastaa ja vastaa kysymyksiisi. Muistathan seuraavat: - Älä tule esitykseen sairaana - Pidä 2 metrin turvaväli kaikissa tilanteissa - Istu sinulle osoitetulla paikalla katsomossa – älä vaihda paikkaa, jotta ylimääräisiä kontakteja ei synny - Noudata tarkoin henkilökuntamme ohjeita liikkuessasi Sellosalin tiloissa ja siirry lämpiöstä saliin vasta, kun katsomolohkoasi on näin ohjeistettu Pandemiatilanteen vuoksi Sellosalilla ei ole naulakkopalvelua, joten jätäthän suuremmat kantamukset mahdollisuuksien mukaan kotiin. Myös kahviomme on suljettuna, mutta viereisen Kauppakeskus Sellon monet ravintolat ja kahvilat palvelevat. Pidätämme oikeuden muutoksiin. Lämpimästi tervetuloa, laulukielto on päättynyt! Sellosalin väki <p>-</p><p>Irinan kahdeksas studioalbumi Haluun olla yksin julkaistiin helmikuussa. Esimakua kuultiin lokakuussa 2020 julkaistun En meistä meitä saa -singlen muodossa. Kappale on upea duetto Irinan bändissä yli kahdenkymmenen vuoden ajan mukana olleen Antti Pitkäjärven kanssa. Kappale on Pitkäjärven säveltämä ja Irinan sanoittama.</p><p>Levyn kaksi edellistä singleä, albumin nimibiisi Haluun olla yksin sekä Rankka päivä, ovat molemmat olleet jättimäisiä radiohittejä. Haluun olla yksin vietti radiolistan ykkösenä peräti yhdeksän viikkoa ja on saavuttanut toistaiseksi reippaasti yli 10 000 soittokertaa radioissa.</p><p>Kesto n. 1 h</p><p>Liput 27,50 / 25 € + toimitusmaksu (alk. 1 €), <a href=\"https://www.lippu.fi/eventseries/2848671\">lippu.fi</a></p><p> <a href=\"https://www.facebook.com/irinansivut\">Irinan verkkosivut</a>\n</p>",
                "sv": "<p> <strong> <br> <br>\nFre. 3.9.2021 kl. 18</strong> <br> <br>\nBiljetter köpta till 28.4.2021 kan användas som sådana till det här nya datumet.</p><p>-</p><p>Irinas åttonde studioalbum Haluun olla yksin släpptes i februari 2021. Vi gick en försmak av det i form av singeln En meistä meitä saa, som släpptes i oktober 2020. Låten är en fantastisk duett med Antti Pitkäjärvi, som i över 20 år varit medlem i Irinas band.</p><p></p><p>De två förra singlarna från skivan har båda varit enorma radiohittar.</p><p>Längd 1 h</p><p>Biljetter 27,50 / 25 euro + expeditionsavgift (från 1 euro), <a href=\"https://www.lippu.fi/sv/artist/sellosali/sellosali-irina-2848671/\">lippu.fi</a></p><p></p><p></p>",
                "en": "<p> <strong> <br> <br>\nFri 3 September 2021 at 18:00 </strong>\n</p><p>Tickets purchased for 28.4.2021 can be used for this replacing date.</p><p>-</p><p>Irina’s eighth album ‘Haluun olla yksin’ was released in February. Her ‘En meistä meitä saa’ single released in October gave a sneak peek into the album. The song is a beautiful duet with Antti Pitkäjärvi, who has been a part of Irina’s band for more than twenty years.</p><p>The two previous singles from the album have both been huge radio hits.</p><p>Duration 1 h</p><p>Tickets €27,50/25 + service fee (from €1), <a href=\"https://www.lippu.fi/en/artist/sellosali/sellosali-irina-2848671/\">lippu.fi</a></p><p></p><p></p><p></p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:192182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:192550",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": null,
                    "info_url": {
                        "fi": "http://bit.ly/sellos21-osmoi",
                        "sv": "http://bit.ly/sellos21-osmoi",
                        "en": "http://bit.ly/sellos21-osmoi"
                    },
                    "description": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 69997,
                    "license": "cc_by",
                    "created_time": "2021-04-21T07:11:39.890228Z",
                    "last_modified_time": "2021-04-21T07:11:39.890266Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{3E1B73D2-1930-4812-AC79-524741745757}/138051",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "https://api.hel.fi/linkedevents/v1/image/69997/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-04-21T07:11:39.766873Z",
            "last_modified_time": "2021-09-01T08:14:23.123648Z",
            "date_published": "2021-04-21T06:00:00Z",
            "start_time": "2021-09-02T16:00:00Z",
            "end_time": "2021-09-02T17:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Osmo julkaisee uuden suomenkielisen albuminsa \"Yhden miehen armeija\" heinäkuun lopulla ja lähtee samaa nimeä kantavalle kiertueelle yhtyeensä kanssa syyskuussa.",
                "sv": "Osmo ger ut sitt nya finskspråkiga album ”Yhden miehen armeija” i slutet av juli och åker i höst på en turné med samma namn tillsammans med sin orkester.",
                "en": "Osmo will release his new Finnish-language album, Yhden miehen armeija, at the end of July, and the band will start an eponymous tour in September."
            },
            "location_extra_info": {
                "fi": "Sellosali",
                "sv": "Sellosalen",
                "en": "Sello Hall"
            },
            "provider": null,
            "name": {
                "fi": "Osmo Ikonen (LOPPUUNMYYTY)",
                "sv": "Osmo Ikonen (SLUTSÅLD)",
                "en": "Osmo Ikonen (SOLD OUT)"
            },
            "info_url": null,
            "description": {
                "fi": "<p> </p><p> <strong>To 2.9.2021 klo 19 </strong>\n</p><p> 20.8.2021 voimaan astuneiden aluehallintoviraston määräysten mukaisesti toteutamme tässä tapahtumassa seuraavat turvallisuustoimenpiteet:\n</p> - yleisö on jaettu 25 henkilön katsomolohkoihin - katsomolohkojen sisällä on 2 metrin turvavälit lippunsa samanaikaisesti ostaneiden seurueiden välillä - pintoja desinfioidaan säännöllisesti - edellytämme kasvomaskien ja käsidesin käyttöä <br> Lipunostajille on toimitettu tarkemmat ohjeet lohkojärjestelyistä ja aikatauluista. Mikäli viesti ei ole tavoittanut sinua, olethan pikimmiten meihin yhteyksissä sellosali@espoo.fi. Yhteistyössä voimme jälleen päästä turvallisten kulttuurielämysten äärelle. Osaava salihenkilökuntamme opastaa ja vastaa kysymyksiisi. <br> Muistathan seuraavat: - Älä tule esitykseen sairaana - Pidä 2 metrin turvaväli kaikissa tilanteissa - Istu sinulle osoitetulla paikalla katsomossa – älä vaihda paikkaa, jotta ylimääräisiä kontakteja ei synny - Noudata tarkoin henkilökuntamme ohjeita liikkuessasi Sellosalin tiloissa ja siirry lämpiöstä saliin vasta, kun katsomolohkoasi on näin ohjeistettu Pandemiatilanteen vuoksi Sellosalilla ei ole naulakkopalvelua, joten jätäthän suuremmat kantamukset mahdollisuuksien mukaan kotiin. Myös kahviomme on suljettuna, mutta viereisen Kauppakeskus Sellon monet ravintolat ja kahvilat palvelevat. Pidätämme oikeuden muutoksiin. <br> Lämpimästi tervetuloa, laulukielto on päättynyt! <br> Sellosalin väki -\n<p> <strong>Osmo Ikonen</strong> on laulaja/lauluntekijä/multi-instrumentalisti ja musiikkituottaja. Hänet tunnetaan soolouransa lisäksi Sunrise Avenue -yhtyeen kosketinsoittajana, sekä mm. <strong>SuomiLOVE</strong>-ohjelman solistina ja sovittajana.</p><p>Hänen debyyttialbuminsa ”<em>Stories From Within</em>” julkaistiin vuonna 2008, toinen albumi ”<em>Heaven Or Hell Is Just State Of Mind</em>” puolestaan vuonna 2010 ja 2015 ilmestyi hänen viimeisin englanninkielinen EP:nsä ”<em>Let it out</em>”. Sittemin artisti on keskittynyt suomenkieliseen tuotantoon. Lämmin ja tunnistettava laulusoundi, energinen lavakarisma, poikkeuksellinen lahjakkuus useiden eri soitinten taitajana sekä pitkä ura musiikin parissa on tehnyt Osmosta arvostetun artistin ympäri Suomen.</p><p>Osmo julkaisee uuden suomenkielisen albuminsa \"<em>Yhden miehen armeija</em>\" heinäkuun lopulla ja lähtee samaa nimeä kantavalle kiertueelle yhtyeensä kanssa syyskuussa 2021. Albumilta on julkaistu jo singlet \"<em>Leikitään et rakkaus ei voi kuolla</em>\", \"<em>Mä voin skippaa taivaan</em>\" ja \"<em>Aina</em>\".</p><p>Kesto 1 h 15 min<br><br>\nLiput 25 € + toimitusmaksu (alk. 1 €), <a href=\"http://bit.ly/sellos21-osmoi\">lippu.fi</a></p><p>Osmo Ikosen sivut: <a href=\"https://www.facebook.com/OsmoOfficial\">https://www.facebook.com/OsmoOfficial</a></p>",
                "sv": "<p> </p><p> <strong>Tors. 2.9.2021 klo 19 </strong>\n</p><p> <strong>Osmo Ikonen</strong> är sångare, låtskrivare, multiinstrumentalist och musikproducent. Han är förutom sin solokarriär även känd som keyboardist i bandet Sunrise Avenue. Osmo ger ut sitt nya finskspråkiga album ”<em>Yhden miehen armeija</em>” i slutet av juli och åker i september på en turné med samma namn tillsammans med sin orkester.</p><p>Längd 1 h 15 min<br><br>\nBiljetter 25 euro + expeditionsavgift (från 1 euro), <a href=\"https://www.lippu.fi/sv/event/sellosali-osmo-ikonen-sellosali-13695480/\">lippu.fi</a></p><p></p>",
                "en": "<p> </p><p> <strong>Thu 2 September 2021 at 19:00 </strong>\n</p><p>Osmo Ikonen is a singer, songwriter, player of multiple instruments and music producer. In addition to his solo career, he is known as the keyboard player of Sunrise Avenue. Osmo will release his new Finnish-language album, Yhden miehen armeija, at the end of July, and the band will start an eponymous tour in September.</p><p>Duration 1 h 15 min</p><p>Tickets €25 + service fee (from €1), <a href=\"https://www.lippu.fi/en/event/sellosali-osmo-ikonen-sellosali-13695480/\">lippu.fi</a></p><p></p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:192550/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:196181",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:21430/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "Liput ennakkoon 22 € + toimitusmaksu (alk. 1 €), lippu.fi.<br>\nLiput ovelta 24 €, jos tilaa on, tuntia ennen esityksen alkua.",
                        "sv": "Biljetter, förköp 22 € + expeditionsavgift (från 1 €), Lippu.fi.<br>\n<br>\nBiljetter vid dörren 24 €, om det finns plats, en timme före evenemanget börjar."
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/mies-miehelle-kannusali-14044873/",
                        "sv": "https://www.lippu.fi/event/mies-miehelle-kannusali-14044873/"
                    },
                    "description": {
                        "fi": "Liput ennakkoon 22 € + toimitusmaksu (alk. 1 €), lippu.fi.<br>\nLiput ovelta 24 €, jos tilaa on, tuntia ennen esityksen alkua.",
                        "sv": "Biljetter, förköp 22 € + expeditionsavgift (från 1 €), Lippu.fi.<br>\n<br>\nBiljetter vid dörren 24 €, om det finns plats, en timme före evenemanget börjar."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-08-30T15:14:15.212952Z",
            "last_modified_time": "2021-08-31T15:14:04.426146Z",
            "date_published": "2021-08-30T13:15:00Z",
            "start_time": "2021-09-24T16:00:00Z",
            "end_time": "2021-09-24T17:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen Smith & Jones, Timo Lavikainen ja Pasi Karppi, tuovat suomeksi näyttämölle 1980-luvun brittiläisen kulttiklassikon. Esitys pohjautuu Mel Smithin ja Griff Rhys Jonesin ”Head to head”-keskusteluihin, jotka nähtiin brittisarjassa Alas Smith and Jones. Sketsisarjan ikonista kuvaa kahdesta valkopaitaisesta miehestä pidetään symbolina brittihuumorin kultaisille vuosille. Mies miehelle on esittäjien kunnianosoitus heidän elämäänsä vaikuttaneille lapsuuden sankareille.",
                "sv": "Mies miehelle (\"Män emellan\") med Pasi Karppi och Timo Lavikainen är saftig satir på finska, som tar språng i den brittiska komeditraditionen."
            },
            "location_extra_info": {
                "fi": "Kannusali",
                "sv": "Kannusali"
            },
            "provider": {
                "fi": "Kannusali"
            },
            "name": {
                "fi": "Mies miehelle",
                "sv": "Mies miehelle (\"Män emellan\")"
            },
            "info_url": null,
            "description": {
                "fi": "<p> </p><p></p><p></p><p>Suomen Smith &amp; Jones, Timo Lavikainen ja Pasi Karppi, tuovat suomeksi näyttämölle 1980-luvun brittiläisen kulttiklassikon. Esitys pohjautuu Mel Smithin ja Griff Rhys Jonesin ”Head to head”-keskusteluihin, jotka nähtiin brittisarjassa Alas Smith and Jones.</p><p>Sketsisarjan ikonista kuvaa kahdesta valkopaitaisesta miehestä pidetään symbolina brittihuumorin kultaisille vuosille. Mies miehelle on esittäjien kunnianosoitus heidän elämäänsä vaikuttaneille lapsuuden sankareille.</p><p>Smith and Jones tulivat tunnetuiksi tabuja rikkovista aiheista ja rankasta huumorista. Myös kielenkäyttö aiheutti pahennusta. Silti heidän komiikka määritellään useimmiten älylliseksi. Hahmojen ääliömäinen käytös on vain pintaa, joka peittää alleen nokkelan ja monitasoisen huumorin. Suomessa sketsiohjelmaa eitettiin nimellä Lunta tupaan. </p><p>Komedian alalla moni juttu on oman aikansa tuote. Head to head-keskustelut ovat kuitenkin kestäneet hyvin aikaa, ovathan aiheetkin ikuisia ja kaikissa kulttuureissa esiintyviä. Nyt 40 vuotta myöhemminkin nostetaan kaverin kanssa häpeilemättä kissa pöydälle. Mies miehelle -esityksessä puhutaan muun muassa rahaongelmista, lastenkasvatuksesta, keski-iän kriisistä, unettomuudesta, seksistä, uskonnosta ja naisista. Kovin, kovin paljon naisista!</p><p>”<em>Kunnianosoituksena mestareille… on aika puhua kuin Mies miehelle</em>.”<br>\nTimo Lavikainen ja Pasi Karppi</p><p>TalkBack-produktion Ltd:n, BBC:n ja Griff Rhys Jonesin luvalla kääntänyt ja koostanut Pasi Karppi.</p><p>Kohderyhmä: Aikuisille</p><p>Liput ennakkoon 22 € + toimitusmaksu (alk. 1 €), lippu.fi.</p><p></p><p></p><p>Liput ovelta 24 €, jos tilaa on, tuntia ennen esityksen alkua.</p>",
                "sv": "<p> </p><p>\"Män emellan\" (Mies miehelle) är en pjäs som baserar sig på Mel Smiths och Griff Rhys Jones \"Head to head\" diskussioner för 40 år sedan.</p><p> <br>\nPasi Karppi har bearbetat materialet med tillåtelse av Talk Back -Production Ltd, BBC och Griff Rhys Jones.</p><p>För vuxna. Språk: finska.</p><p></p><p></p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:196181/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:192540",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:58548/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": null,
                    "info_url": null,
                    "description": {
                        "fi": "Vapaa pääsy."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 73306,
                    "license": "cc_by",
                    "created_time": "2021-08-31T14:14:15.845691Z",
                    "last_modified_time": "2021-08-31T14:14:15.845726Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{70FFF9A7-1BE5-48F5-98F5-6A188825BD7D}/138040",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "https://api.hel.fi/linkedevents/v1/image/73306/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-08-31T14:14:15.718244Z",
            "last_modified_time": "2021-08-31T14:14:15.901441Z",
            "date_published": "2021-08-31T11:58:00Z",
            "start_time": "2021-10-24T11:00:00Z",
            "end_time": "2021-10-24T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Espanjalaisen elokuvan omaleimaisen legendan Pedro Almodóvarin Kärsimys ja kunnia on katkeransuloinen tarina taiteilijaelämästä. Pääosissa nähdään Antonio Banderas ja Penélope Cruz."
            },
            "location_extra_info": {
                "fi": "Espoon kulttuurikeskus, Louhisali"
            },
            "provider": {
                "fi": "Espoon kulttuurikeskus"
            },
            "name": {
                "fi": "Sunnuntaileffa: Kärsimys ja kunnia"
            },
            "info_url": null,
            "description": {
                "fi": "<br><br>\nKärsimys ja kunnia kertoo elokuvaohjaaja Salvador Mallonista (Banderas), joka kamppailee terveysongelmien kanssa ja käy muistoissaan läpi elämänvaiheitaan: lapsuus 1960-luvulla Valenciassa sinne paremman elämän toivossa muuttaneessa perheessä, ensimmäinen intohimon kokemus, ensirakkaus aikuisena 1980-luvun Madridissa, kivulias ero kiihkeän suhteen jälkeen, kirjoittaminen ainoana keinona unohtaa jotain unohtumatonta, elokuvan pariin ajautumisen varhaiset vaiheet ja tyhjyys, pohjaton tyhjyys, joka estää elokuvanteon.<br><br>\nElokuva sai maailmanensi-iltansa Cannesin elokuvajuhlien kilpailusarjassa toukokuussa 2019. Antonio Banderas huomioitiin roolistaan parhaan miespääosan palkinnolla. Ylistävät arvostelut maailmalla saanutta elokuvaa on kutsuttu Almodóvarin parhaaksi työksi vuosiin ja sen tarinasta on löydetty omaelämäkerrallisia piirteitä.<br><br>\nKärsimys ja Kunnia (Dolor y gloria), 2019<br>\nOhjaaja: Pedro Almodóvar<br>\nPääosissa: Antonio Banderas, Penelope Cruz<br>\nKesto: 1 t 53 min<br>\nIkäraja: K-16<br>\nLevittäjä: Finnkinon teatterilevitys<br>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:192540/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:196200",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:58548/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": null,
                    "info_url": null,
                    "description": {
                        "fi": "Vapaa pääsy"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 73305,
                    "license": "cc_by",
                    "created_time": "2021-08-31T14:14:13.734683Z",
                    "last_modified_time": "2021-08-31T14:14:13.734706Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{80FDC041-7B3D-4E20-9CED-A04682608155}/141380",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "https://api.hel.fi/linkedevents/v1/image/73305/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-08-31T14:14:13.589231Z",
            "last_modified_time": "2021-08-31T14:14:13.779530Z",
            "date_published": "2021-08-31T11:57:00Z",
            "start_time": "2021-09-19T10:00:00Z",
            "end_time": "2021-09-19T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Syyskuun sunnuntaileffassa nähdään kutkuttava trilleri Lupaava nuori nainen, herkullinen ja tuore kuvaus kostosta."
            },
            "location_extra_info": {
                "fi": "Espoon kulttuurikeskus, Louhisali"
            },
            "provider": {
                "fi": "Espoon kulttuurikeskus"
            },
            "name": {
                "fi": "Sunnuntaileffa: Lupaava nuori nainen"
            },
            "info_url": null,
            "description": {
                "fi": "<p> <br> <br>\nKaikkien mielestä Cassie (Carey Mulligan) oli erittäin lupaava nuori nainen, kunnes tapahtui jotain, mikä romutti hänen tulevaisuutensa. Mikään Cassien elämässä ei ole sitä miltä näyttää. Hän on huippuälykäs, taiturimaisen ovela ja viettää öisin salaista kaksoiselämää. Eräs yllättävä kohtaaminen tarjoaa Cassielle mahdollisuuden oikaista menneisyyden vääryydet.</p><p>Kutkuttava trilleri Lupaava nuori nainen on herkullinen ja tuore kuvaus kostosta. Käsikirjoituksesta ja ohjauksesta vastaa huikean lahjakas Emerald Fennel, joka on toiminut mm. Killing Eve -sarjan showrunnerina ja näytellyt The Crown ja Hakekaa kätilö! -sarjoissa. Lupaava nuori nainen on hänen ensimmäinen pitkä elokuvansa.</p><p>Elokuva oli viiden Oscarin ehdokas: Paras elokuva, paras ohjaus, paras naispääosa, paras alkuperäiskäsikirjoitus, paras leikkaus.</p><p>Lupaava nuori nainen (Promising Young Woman), 2020<br>\nOhjaaja: Emerald Fennel<br>\nPääosissa: Carey Mulligan, Bo Burnham<br>\nKesto: 1 t 54 min<br>\nIkäraja: K-16<br>\nLevittäjä: Finnkinon teatterilevitys</p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:196200/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193954",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "sv": "Fritt inträde, obligatoriska bokningar."
                    },
                    "info_url": {
                        "sv": "https://link.webropol.com/s/kulturhosten2021"
                    },
                    "description": {
                        "sv": "Obligatoriska bokningar."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-15T09:12:25.622801Z",
            "last_modified_time": "2021-08-31T12:14:21.431074Z",
            "date_published": "2021-06-15T07:42:00Z",
            "start_time": "2021-12-09T08:45:00Z",
            "end_time": "2021-12-09T09:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "En äkta klassiker som vunnit flera pris och nominerats till en Oscar. Snögubben är en tecknad film baserad på Raymond Briggs bok med samma namn."
            },
            "location_extra_info": {
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "sv": "Snögubben (film)"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "En äkta klassiker som vunnit flera pris och nominerats till en Oscar. Snögubben är en tecknad film baserad på Raymond Briggs bok med samma namn.<br>\nLille James bygger under en hel dag en snögubbe hemma på gården. När han på kvällen går och lägger sig är han så uppspelt av sin snögubbe så han har svårt att somna. Mitt i natten smyger han ut på gården och ser sin snögubbe som nu är livs levande. Det är början till deras spännande äventyr.<br>\n30 min.<br>\nFör 3 år fyllda.<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193954/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193952",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "sv": "Fritt inträde, obligatoriska bokningar."
                    },
                    "info_url": {
                        "sv": "https://link.webropol.com/s/kulturhosten2021"
                    },
                    "description": {
                        "sv": "Obligatoriska bokningar."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-15T09:12:24.863319Z",
            "last_modified_time": "2021-08-31T12:14:21.036304Z",
            "date_published": "2021-06-15T07:40:00Z",
            "start_time": "2021-11-25T08:45:00Z",
            "end_time": "2021-11-25T09:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Men hur skall man lära en trädgårdsmästare att mullvader egentligen är helt nyttiga små kryp? Och vad i världen kan hända en Mullvad i staden?"
            },
            "location_extra_info": {
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "sv": "Wasa Teater: Det osynliga barnet"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "Men hur skall man lära en trädgårdsmästare att mullvader egentligen är helt nyttiga små kryp? Och vad i världen kan hända en Mullvad i staden? Det får du veta när du bekantar dig med Mullvaden och hans vänner!<br>\n30 min.<br>\n1 år fyllda<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193952/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193950",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "sv": "Fritt inträde, obligatoriska bokningar."
                    },
                    "info_url": {
                        "sv": "https://link.webropol.com/s/kulturhosten2021"
                    },
                    "description": {
                        "sv": "Obligatoriska bokningar."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-15T09:12:24.716493Z",
            "last_modified_time": "2021-08-31T12:14:20.933378Z",
            "date_published": "2021-06-15T07:40:00Z",
            "start_time": "2021-11-25T07:30:00Z",
            "end_time": "2021-11-25T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Men hur skall man lära en trädgårdsmästare att mullvader egentligen är helt nyttiga små kryp? Och vad i världen kan hända en Mullvad i staden?"
            },
            "location_extra_info": {
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "sv": "Wasa Teater: Det osynliga barnet"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "Men hur skall man lära en trädgårdsmästare att mullvader egentligen är helt nyttiga små kryp? Och vad i världen kan hända en Mullvad i staden? Det får du veta när du bekantar dig med Mullvaden och hans vänner!<br>\n30 min.<br>\n1 år fyllda<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193950/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193949",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "sv": "Fritt inträde, obligatoriska bokningar."
                    },
                    "info_url": {
                        "sv": "https://link.webropol.com/s/kulturhosten2021"
                    },
                    "description": {
                        "sv": "Obligatoriska bokningar."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-15T09:12:23.714478Z",
            "last_modified_time": "2021-08-31T12:14:20.303971Z",
            "date_published": "2021-06-15T07:37:00Z",
            "start_time": "2021-11-04T09:00:00Z",
            "end_time": "2021-11-04T09:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Vi firar Svenska veckan med en av Tove Janssons älskade berättelser.\nEn föreställning om utanförskap och om att bli sedd."
            },
            "location_extra_info": {
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "sv": "Wasa Teater: Det osynliga barnet"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "En dockteaterföreställning om Ninni som har blivit osynlig efter att hon behandlats illa. Muminfamiljens omsorg gör att hon sakta börjar synas igen. En föreställning om utanförskap och om att bli sedd.<br>\nText: Tove Jansson<br>\nDramatisering: Mikaela Hasán, Pelle Heikkilä<br>\nRegi: Agneta Lindroos<br>\nI rollerna: Susanne Marins<br>\nFöreställningen är en del av <strong>Svenska Veckan</strong> och bekostas av Svenska Folktinget.<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193949/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:195117",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/espoo:3097/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "fi": "Vapaa pääsy mutta pakollisen annakkovaraukset Lippu.fi kautta, palvelumaksu 1,50 €.",
                        "sv": "Fritt inträde, obligatoriska bokningar via lippu.fi (serviceavgift 1,50 €) p.g.a. begränsad publikmängd."
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/esbo-stad/esbo-arbis-theatre-group-the-importance-of-being-earnest-2849854/",
                        "sv": "https://www.lippu.fi/artist/esbo-stad/esbo-arbis-theatre-group-the-importance-of-being-earnest-2849854/"
                    },
                    "description": {
                        "fi": "Vapaa pääsy mutta pakollisen annakkovaraukset Lippu.fi kautta, palvelumaksu 1,50 €.",
                        "sv": "Fritt inträde, obligatoriska bokningar via lippu.fi (serviceavgift 1,50 €) p.g.a. begränsad publikmängd."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-07-04T12:12:49.560018Z",
            "last_modified_time": "2021-08-31T12:14:19.885153Z",
            "date_published": "2021-07-04T10:00:00Z",
            "start_time": "2021-10-24T13:30:00Z",
            "end_time": "2021-10-24T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Esbo Arbiksen teatteriryhmän englanninkielinen esitys.",
                "sv": "A classic British comedy, now with a modern twist."
            },
            "location_extra_info": {
                "fi": "Vindängensali - Vindängen",
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "fi": "Esbo stad",
                "sv": "Esbo stad"
            },
            "name": {
                "fi": "Esbo Arbis Theatre group: The importance of being earnest",
                "sv": "Esbo Arbis Theatre group: The importance of being earnest"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "fi": "Esbo Arbiksen teatteriryhmän englanninkielinen esitys.<br><br>\nThe Importance of Being Earnest - Esbo Arbis English Theatre Group stages a classic British comedy, now with a modern twist.<br>\nDirection and adaptation: Sven Fernandez. <br> <p> <strong>Covid-19 tietoa</strong> <br>\nSeuraamme virnaomaisten ja Espoon kaupungin koronaohjeistuksia ja näin ollen olemme valmiudessa tekemään muutoksia myös pikaisella aikaviiveellä.<br>\nAjankohtaiset ohjeet löydät Espoon osalta sivulta <a href=\"http://www.espoo.fi/koronavirus\">www.espoo.fi/koronavirus</a> ja salimme turvallisuusohjeistuksen löydät sivulta <a href=\"http://www.espoo.fi/vindangen\">www.espoo.fi/vindangen</a><br><br>\nKiitos että yhdessä huolehdimme toistemme terveydestä ja turvallisuudesta.</p>",
                "sv": "The Importance of Being Earnest - Esbo Arbis English Theatre Group stages a classic British comedy, now with a modern twist.<br>\nDirection and adaptation: Sven Fernandez. <br><br>\nVi följer myndigheternas och Esbo stads anvisningar gällande Covid-19 och är redo för förändrningar även med kort varsel.<br>\nPublikmängden i salen är begränsad för att behålla trygga avstånd."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:195117/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:195226",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "Liput 15 € (sis. Lippu.fi palvelumaksun 1,50 e).<br>\nSuosittelemme ostamaan liput ennakkoon.",
                        "sv": "Biljetter: 15 € (inkl. serviceavgiften) från Lippu.fi"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/esbo-stad/teater-josefina-ptitet-moi-och-piaf-espoo-2849849/",
                        "sv": "https://www.lippu.fi/artist/esbo-stad/teater-josefina-ptitet-moi-och-piaf-espoo-2849849/"
                    },
                    "description": {
                        "fi": "Liput 15 € (sis. Lippu.fi palvelumaksun 1,50 e).<br>\nSuosittelemme ostamaan liput ennakkoon.",
                        "sv": "Biljetter: 15 € (inkl. serviceavgiften) från Lippu.fi<br>\nVi rekommenderar förköp. Biljetter kan köpasvd dörren - om biljetter finns - med kort/kontant betalning."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-07-06T07:13:39.933121Z",
            "last_modified_time": "2021-08-31T12:14:19.742005Z",
            "date_published": "2021-07-06T06:52:00Z",
            "start_time": "2021-10-23T11:00:00Z",
            "end_time": "2021-10-23T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Johanna Ringbom ja Iiro Salmi esittävät Edith Piafin lauluja ruotsinkielisessä konsertissa.",
                "sv": "\"En musikalisk föreställning med personligt tilltal. Allvar, drama och lättsamt i en skön blandning.”"
            },
            "location_extra_info": {
                "fi": "Vindängensali - Vindängen",
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "fi": "Espoon kaupunki",
                "sv": "Esbo stad"
            },
            "name": {
                "fi": "Teater Josefina: P'tite moi och Piaf",
                "sv": "Teater Josefina: P'tite moi och Piaf"
            },
            "info_url": {
                "fi": "http://www.esbo.fi/vindangen",
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "fi": "Johanna Ringbom ja Iiro Salmi esittävät Edith Piafin lauluja ruotsinkielisessä konsertissa.\n<br>\nEsityksen alkuperäinen esityspäivä oli 27.3.2021 mutta koronatilanteen vuoksi tuohon esitykseen ostetut liput käyvät tähän lokakuun konserttiin.<br><br><strong>Covid-19 tietoa</strong><br>\nSeuraamme virnaomaisten ja Espoon kaupungin koronaohjeistuksia ja näin ollen olemme valmiudessa tekemään muutoksia myös pikaisella aikaviiveellä.<br>\nAjankohtaiset ohjeet löydät Espoon osalta sivulta <a href=\"http://www.espoo.fi/koronavirus\">www.espoo.fi/koronavirus</a> ja salimme turvallisuusohjeistuksen löydät sivulta <a href=\"http://www.espoo.fi/vindangen\">www.espoo.fi/vindangen</a><br><br>\nKiitos että yhdessä huolehdimme toistemme terveydestä ja turvallisuudesta<br>",
                "sv": "<em>”Varför Piaf? Varför p´tite moi? Lilla jag?<br>\nNär jag var liten hade vi två EP-skivor: en med Piaf och en med Yves Montand. Piaf drabbade mej djupt: hennes sång, hennes tolkning, hennes skorrande. Jag gick i Franska skolan så jag förstod språket.<br>\nNu dyker jag ner i min barndom, i Piaf och hennes betydelse för mej. Jag sjunger 12 sånger, de flesta på franska, men med finns också några svenska sånger som tematiskt passar in i helheten. Det blir en musikalisk föreställning med personligt tilltal. Allvar, drama och lättsamt i en skön blandning.”</em><br><br>\nPå scen: Johanna Ringbom och Iiro Salmi<br>\nca 1 1/2 timme inkl. paus<br><br>\nOBS! Föreställningen är flyttad från våren (27.3.2021) till nytt datum i oktober.<br>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:195226/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193940",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "sv": "4,00 /barn"
                    },
                    "info_url": {
                        "sv": "https://link.webropol.com/s/kulturhosten2021"
                    },
                    "description": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-15T08:12:03.161131Z",
            "last_modified_time": "2021-08-31T12:14:19.073893Z",
            "date_published": "2021-06-15T05:56:00Z",
            "start_time": "2021-10-14T07:00:00Z",
            "end_time": "2021-10-14T07:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Vi riktar ett förstoringsglas mot myrstackens organiserade kaos, lyssnar på vad träden vill berättar, undrar varför myggor finns och känner efter var vår egen plats är i det stora sammanhanget. Vi vill ge er en rolig, spännande och vacker föreställning om småkryp och stora frågor."
            },
            "location_extra_info": {
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "sv": "Teater Kojan: Vi och vilda väsen"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "Vi och vilda väsen är en förtjusande föreställning full med finurlig fakta och filosofiska funderingar om planeten vi bor på. Pjäsen är en hyllning till allt som lever och dör men också en stund för att undra och fundera över sånt vi inte vet. Vi riktar ett förstoringsglas mot myrstackens organiserade kaos, lyssnar på vad träden vill berättar, undrar varför myggor finns och känner efter var vår egen plats är i det stora sammanhanget. Vi vill ge er en rolig, spännande och vacker föreställning om småkryp och stora frågor.<br>\nPå scen: Ida Törnroos och Kaisa Lallukka<br>\nRegi: Sonja Järvisalo<br>\n45 minuter 3 år <br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193940/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:195103",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/espoo:3096/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "10,00<br>\nLipun hinta sisältää Lippu.fi palvelumaksun."
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/esbo-stad/barnens-estrad-maesterkatten-i-stoevlar-2857746/#calendar-start=2021-09"
                    },
                    "description": {
                        "fi": "Lipun hinta sisältää Lippu.fi palvelumaksun."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-07-04T10:12:44.438488Z",
            "last_modified_time": "2021-08-31T12:14:17.844045Z",
            "date_published": "2021-07-04T09:22:00Z",
            "start_time": "2021-09-25T13:00:00Z",
            "end_time": "2021-09-25T13:40:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Koko perheelle sopiva ruotsinkielinen teatteriesitys."
            },
            "location_extra_info": {
                "fi": "Tuulikujan pallokenttä"
            },
            "provider": {
                "fi": "Vindängensali - Vindängen / Espoon kaupunki"
            },
            "name": {
                "fi": "Barnens Estrad: Mästerkatten i stövlar"
            },
            "info_url": {
                "fi": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "fi": "Barnens Estrad -ryhmän toteuttama ruotsinkielinen ulkoilmaesitys koko perheelle suunnatusta klassikkosadusta (Saapasjalkakissa).<br><br>\nEsitys sopii 2 vuotta täyttäneille.<br>\nKesto n. 30 min.<br> <p> <em> <strong>Covid-19 tietoa</strong> </em> <br>\nSeuraamme virnaomaisten ja Espoon kaupungin koronaohjeistuksia ja näin ollen olemme valmiudessa tekemään muutoksia myös pikaisella aikaviiveellä.<br>\nAjankohtaiset ohjeet löydät Espoon osalta sivulta <a href=\"http://www.espoo.fi/koronavirus\">www.espoo.fi/koronavirus</a> ja salimme turvallisuusohjeistuksen löydät sivulta <a href=\"http://www.espoo.fi/vindangen\">www.espoo.fi/vindangen</a><br><br>\nKiitos että yhdessä huolehdimme toistemme terveydestä ja turvallisuudesta.</p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:195103/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193758",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/espoo:3095/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "sv": "10,00<br>\nI priset ingår Lippu.fi serviceavgift."
                    },
                    "info_url": {
                        "sv": "https://www.lippu.fi/artist/esbo-stad/barnens-estrad-maesterkatten-i-stoevlar-2857746/#calendar-start=2021-09"
                    },
                    "description": {
                        "sv": "I priset ingår Lippu.fi serviceavgift. "
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-08T12:11:40.180862Z",
            "last_modified_time": "2021-08-31T12:14:17.708084Z",
            "date_published": "2021-06-08T10:40:43.693000Z",
            "start_time": "2021-09-25T11:00:00Z",
            "end_time": "2021-09-25T11:40:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "En levnadsglad saga om att förstå sitt värde. En rolig, interaktiv och musikalisk pjäs om den välkända Mästerkatten – förverkligas utomhus på bollplanen."
            },
            "location_extra_info": {
                "sv": "Vindängens bollplan"
            },
            "provider": {
                "sv": "Vindängensalen Esbo stad"
            },
            "name": {
                "sv": "Barnens Estrad: Mästerkatten i stövlar"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "Mjölnarsonen är förtvivlad! Den enda han fick ärva var en lite katt. Ingen kan väl leva av en katt? Men katten visar sig vara ovanlig och lovar fantastiska saker bara han bara får ett par stövlar…<br>\nEn levnadsglad saga om att förstå sitt värde. En rolig, interaktiv och musikalisk pjäs om den välkända Mästerkatten – förverkligas utomhus på bollplanen.<br>\n35 min.<br>\nåldersrekommendation: 2 år fyllda<br> <p> <em>Gällande Covid-19</em> <br>\nVi följer Esbo stads och myndigheternas anvisningar gällande Covid 19 och är därmed vid behov förberedda för snabba förändringar.<br>\nHöstens föreställningar har ytterst begränsad publikmängd (som i mån av möjlighet ökar) för att trygga säkerhetsavstånden. Våra säkerhetsarrangemang kan läsas på vår hemsida.</p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193758/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:195107",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "fi": "Vapaa pääsy mutta paikkojen varaus www.lippu.fi (1,50 € palvelumaksu)",
                        "sv": "Fritt inträde, reservera plats via Lippu.fi (serviceavgift 1,5 €)."
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/saeg-det-i-toner-vindaengen-13810528/",
                        "sv": "https://www.lippu.fi/event/saeg-det-i-toner-vindaengen-13810528/"
                    },
                    "description": {
                        "fi": "Vapaa pääsy mutta paikkojen varaus www.lippu.fi (1,50 € palvelumaksu).",
                        "sv": "Fritt inträde, reservera plats via Lippu.fi (serviceavgift 1,5 €)."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-07-04T10:12:47.255198Z",
            "last_modified_time": "2021-08-31T11:14:14.236785Z",
            "date_published": "2021-07-04T09:46:00Z",
            "start_time": "2021-12-19T12:00:00Z",
            "end_time": "2021-12-19T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perinteiset ruotsinkieliset yhteislauluiltamme ovat löytäneet koronan vuoksi uuden muodon. Musiikki ja tarinat laulujen takaa ovat saaneet pääosan.",
                "sv": "De traditionella allsångskvällarna har omvandlats till stunder där berättelserna bakom sångerna och musiken får huvudrollen."
            },
            "location_extra_info": {
                "fi": "Vindängensali - Vindängen",
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "fi": "Vindängensali",
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "fi": "Säg det i toner - yhteislaulu",
                "sv": "Säg det i toner - allsång"
            },
            "info_url": {
                "fi": "http://www.esbo.fi/vindangen",
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "fi": "Perinteiset ruotsinkieliset yhteislauluiltamme ovat löytäneet koronan vuoksi uuden muodon. Musiikki ja tarinat laulujen takaa ovat saaneet pääosan.<br> <p> <strong>Covid-19 tietoa</strong> <br>\nSeuraamme virnaomaisten ja Espoon kaupungin koronaohjeistuksia ja näin ollen olemme valmiudessa tekemään muutoksia myös pikaisella aikaviiveellä.<br>\nAjankohtaiset ohjeet löydät Espoon osalta sivulta <a href=\"http://www.espoo.fi/koronavirus\">www.espoo.fi/koronavirus</a> ja salimme turvallisuusohjeistuksen löydät sivulta <a href=\"http://www.espoo.fi/vindangen\">www.espoo.fi/vindangen</a><br><br>\nKiitos että yhdessä huolehdimme toistemme terveydestä ja turvallisuudesta.</p>",
                "sv": "De traditionella allsångskvällarna har omvandlats till stunder där berättelserna bakom sångerna och musiken får huvudrollen. Gästande artister publiceras ca 4 veckor innan konsertdagen.<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:195107/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:195105",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/espoo:3095/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "15<br>\nHinta sisältää Lippupisteen palvelumaksun.",
                        "sv": "15<br>\nI priset ingår Lippu.fi serviceavgift."
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/esbo-stad/mamma-mu-och-krakan-firar-jul-2939268/",
                        "sv": "https://www.lippu.fi/artist/esbo-stad/mamma-mu-och-krakan-firar-jul-2939268/"
                    },
                    "description": {
                        "fi": "Hinta sisältää Lippupisteen palvelumaksun. ",
                        "sv": "I priset ingår Lippu.fi serviceavgift. "
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-07-04T10:12:47.083168Z",
            "last_modified_time": "2021-08-31T11:14:14.150615Z",
            "date_published": "2021-07-04T09:32:00Z",
            "start_time": "2021-12-18T12:00:00Z",
            "end_time": "2021-12-18T12:40:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Koko perheen ruotsinkielinen joulunäytelmä Mimmi Lehmän ja Variksen joulunvietosta.",
                "sv": "En rolig, varm, interaktiv och musikalisk pjäs om de goda vännerna och deras äventyr."
            },
            "location_extra_info": {
                "fi": "Vindängensali - Vindängen",
                "sv": "Vindängensalen"
            },
            "provider": {
                "fi": "Vindängensali/Espoon kaupunki",
                "sv": "Vindängensalen Esbo stad"
            },
            "name": {
                "fi": "Barnens Estrad: Mamma Mu och Kråkan firar jul",
                "sv": "Barnens Estrad: Mamma Mu och Kråkan firar jul"
            },
            "info_url": {
                "fi": "http://www.esbo.fi/vindangen",
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "fi": "Barnens Estrad juhlistaa joulunaikaa ruotsinkielisellä koko perheen esityksellä missä saamme seurata Mimmi Lehmän ja Variksen joulunviettoa.<br> <p> <strong>Covid-19 tietoa</strong> <br>\nSeuraamme virnaomaisten ja Espoon kaupungin koronaohjeistuksia ja näin ollen olemme valmiudessa tekemään muutoksia myös pikaisella aikaviiveellä.<br>\nAjankohtaiset ohjeet löydät Espoon osalta sivulta <a href=\"http://www.espoo.fi/koronavirus\">www.espoo.fi/koronavirus</a> ja salimme turvallisuusohjeistuksen löydät sivulta <a href=\"http://www.espoo.fi/vindangen\">www.espoo.fi/vindangen</a><br><br>\nKiitos että yhdessä huolehdimme toistemme terveydestä ja turvallisuudesta.</p>",
                "sv": "När de goda vännerna träffas uppstår alltid roliga och tokiga situationer!<br>\nEn rolig, varm, interaktiv och musikalisk pjäs om de goda vännerna och deras äventyr.<br>\nÅldersrekommendation: 2 år fyllda<br>\nSpeltid: ca 35 min.<br> <p> <em>Gällande Covid-19</em> <br>\nVi följer Esbo stads och myndigheternas anvisningar gällande Covid 19 och är därmed vid behov förberedda för snabba förändringar.<br>\nHöstens föreställningar har ytterst begränsad publikmängd (som i mån av möjlighet ökar) för att trygga säkerhetsavstånden. Våra säkerhetsarrangemang kan läsas på vår hemsida.</p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:195105/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193953",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "sv": "Fritt inträde, obligatoriska bokningar."
                    },
                    "info_url": {
                        "sv": "https://link.webropol.com/s/kulturhosten2021"
                    },
                    "description": {
                        "sv": "Obligatoriska bokningar."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-15T09:12:25.457982Z",
            "last_modified_time": "2021-08-31T11:14:13.786790Z",
            "date_published": "2021-06-15T07:41:00Z",
            "start_time": "2021-12-09T07:30:00Z",
            "end_time": "2021-12-09T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "En äkta klassiker som vunnit flera pris och nominerats till en Oscar. Snögubben är en tecknad film baserad på Raymond Briggs bok med samma namn."
            },
            "location_extra_info": {
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "sv": "Snögubben (film)"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "En äkta klassiker som vunnit flera pris och nominerats till en Oscar. Snögubben är en tecknad film baserad på Raymond Briggs bok med samma namn.<br>\nLille James bygger under en hel dag en snögubbe hemma på gården. När han på kvällen går och lägger sig är han så uppspelt av sin snögubbe så han har svårt att somna. Mitt i natten smyger han ut på gården och ser sin snögubbe som nu är livs levande. Det är början till deras spännande äventyr.<br>\n30 min.<br>\nFör 3 år fyllda.<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193953/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:195227",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "price": {
                        "fi": "Lipun hinta sisältää Lippu.fi palvelumaksun 1,50 €.<br>\nSuosittelemme lippujen ostoa ennakkoon.",
                        "sv": "15 € (inkl. serviceavgiften) från www.lippu.fi samt vid dörren (kortbetalning) om inte annat nämns. Vi rekommenderar förköp."
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/esbo-stad-sas-kopp-vindaengen-13377208/",
                        "sv": "https://www.lippu.fi/event/esbo-stad-sas-kopp-vindaengen-13377208/"
                    },
                    "description": {
                        "fi": "Lipun hinta sisältää Lippu.fi palvelumaksun 1,50 €.<br>\nSuosittelemme lippujen ostoa ennakkoon.",
                        "sv": "15 € (inkl. serviceavgiften) från www.lippu.fi samt vid dörren (kortbetalning) om inte annat nämns. Vi rekommenderar förköp."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-07-06T07:13:40.505658Z",
            "last_modified_time": "2021-08-31T11:14:12.917802Z",
            "date_published": "2021-07-06T06:56:00Z",
            "start_time": "2021-11-06T12:00:00Z",
            "end_time": "2021-11-06T12:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tuttu kaksikko - tutut laulut.\nSås & Kopp (Sotta ja Pytty) ovat viihdyttäneet lapsiperheitä jo kolmen vuosikymmenen ajan.",
                "sv": "Denna konsert ersätter konserten lördag 13.3.2021. Se nedan för ytterligare info. En välbekant duo och välbekanta sånger."
            },
            "location_extra_info": {
                "fi": "Vindängensali - Vindängen",
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "fi": "Espoon kaupunki",
                "sv": "Esbo stad"
            },
            "name": {
                "fi": "Sås & Kopp",
                "sv": "Sås & Kopp"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "fi": "<p>Tuttu kaksikko - tutut laulut.<br>\nSås &amp; Kopp (Sotta ja Pytty) ovat viihdyttäneet lapsiperheitä jo kolmen vuosikymmenen ajan. <br><br>\nJuhlistamme Svenska veckan -viikkoa koko perheelle suunnatulla ruotsinkielisellä konsertilla.<br><br>\nKesto n. 45 min.</p>",
                "sv": "<p>Med hänvisning till det rådanden läget med Covid-19, <strong>har konserten med Sås Kopp (13.3.2021) flyttats till ett nytt datum, lördag 6.11.2021 kl. 14.</strong><br>\nDe köpta biljetterna kan användas på den nya konsertdagen men om ni vill returnera biljetterna, ber vi er göra det senast 31.3.2021 det via denna länk: <a href=\"https://web.lippu.fi/palautus?fbclid=IwAR0qoB_YDksBylFIPmBBKQvDHDIJuxlwmd_wPLzzdfA1KSuTRQ2ZzTQH5FI\">https://web.lippu.fi/palautus</a></p><p>En välbekant duo och välbekanta sånger. Låt Traktor Alban, Sim-simsalabim och Trampolin dra dig med på en musikalisk färd som lämpar sig för små och lite större.<br>\n45 min.<br> </p>"
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:195227/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:193941",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "sv": "Fritt inträde, obligatoriska bokningar."
                    },
                    "info_url": {
                        "sv": "https://link.webropol.com/s/kulturhosten2021"
                    },
                    "description": {
                        "sv": "Obligatoriska bokningar."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2021-06-15T09:12:23.555171Z",
            "last_modified_time": "2021-08-31T11:14:12.608866Z",
            "date_published": "2021-06-15T07:36:00Z",
            "start_time": "2021-11-04T07:30:00Z",
            "end_time": "2021-11-04T08:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "sv": "Vi firar Svenska veckan med en av Tove Janssons älskade berättelser.\nEn föreställning om utanförskap och om att bli sedd."
            },
            "location_extra_info": {
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "sv": "Wasa Teater: Det osynliga barnet"
            },
            "info_url": {
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "sv": "En dockteaterföreställning om Ninni som har blivit osynlig efter att hon behandlats illa. Muminfamiljens omsorg gör att hon sakta börjar synas igen. En föreställning om utanförskap och om att bli sedd.<br>\nText: Tove Jansson<br>\nDramatisering: Mikaela Hasán, Pelle Heikkilä<br>\nRegi: Agneta Lindroos<br>\nI rollerna: Susanne Marins<br>\nFöreställningen är en del av <strong>Svenska Veckan</strong> och bekostas av Svenska Folktinget.<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:193941/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:195112",
            "location": {
                "@id": "https://api.hel.fi/linkedevents/v1/place/tprek:20017/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "price": {
                        "fi": "Vapaa pääsy. Pakolliset paikkavaraukset www.lippu.fi (palvelumaksu 1,50€).",
                        "sv": "Fritt inträde, reservera plats via Lippu.fi (serviceavgift 1,5 €)."
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/saeg-det-i-toner-vindaengen-13810526/",
                        "sv": "https://www.lippu.fi/event/saeg-det-i-toner-vindaengen-13810526/"
                    },
                    "description": {
                        "fi": "Vapaa pääsy. Pakolliset paikkavaraukset www.lippu.fi (palvelumaksu 1,50€)",
                        "sv": "Fritt inträde, reservera plats via Lippu.fi (serviceavgift 1,5 €)."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2021-07-04T11:12:44.856147Z",
            "last_modified_time": "2021-08-31T11:14:11.264686Z",
            "date_published": "2021-07-04T09:56:00Z",
            "start_time": "2021-10-10T11:00:00Z",
            "end_time": "2021-10-10T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Perinetiset yhtesilauluiltamme ovat koronan myötä löytäneet uuden muodon. Tarinat musiikin ja kappaleiden takaa ovat saaneet suuremman osan.",
                "sv": "De traditionella allsångskvällarna har omvandlats till stunder där berättelserna bakom sångerna och musiken får huvudrollen."
            },
            "location_extra_info": {
                "fi": "Vindängensali - Vindängen",
                "sv": "Vindängensalen - Vindängen"
            },
            "provider": {
                "fi": "Vindängensali",
                "sv": "Vindängensalen/Esbo stad"
            },
            "name": {
                "fi": "Säg det i toner - yhteislaulu",
                "sv": "Säg det i toner - allsång"
            },
            "info_url": {
                "fi": "http://www.esbo.fi/vindangen",
                "sv": "http://www.esbo.fi/vindangen"
            },
            "description": {
                "fi": "Perinetiset yhtesilauluiltamme ovat koronan myötä löytäneet uuden muodon. Tarinat musiikin ja kappaleiden takaa ovat saaneet suuremman osan.<br><br>\nVierailevat esiinytyjät ilmoitetaan n. 4 viikkoa ennen tapahtumapäivää.<br> <p> <strong>Covid-19 tietoa</strong> <br>\nSeuraamme virnaomaisten ja Espoon kaupungin koronaohjeistuksia ja näin ollen olemme valmiudessa tekemään muutoksia myös pikaisella aikaviiveellä.<br>\nAjankohtaiset ohjeet löydät Espoon osalta sivulta <a href=\"http://www.espoo.fi/koronavirus\">www.espoo.fi/koronavirus</a> ja salimme turvallisuusohjeistuksen löydät sivulta <a href=\"http://www.espoo.fi/vindangen\">www.espoo.fi/vindangen</a><br><br>\nKiitos että yhdessä huolehdimme toistemme terveydestä ja turvallisuudesta.</p>",
                "sv": "De traditionella allsångskvällarna har omvandlats till stunder där berättelserna bakom sångerna och musiken får huvudrollen. Gästande artister publiceras ca 4 veckor innan konsertdagen.<br><br><br><strong>Gällande Covid-19</strong><br>\nVi följer myndigheternas och Esbo stads anvisingar och är därmed beredda för förändringar även på kort varsel. Höstens föreställningar förverkligas med bl.a. begränsad publikmängd och strikta säkerthetsarrangemang."
            },
            "@id": "https://api.hel.fi/linkedevents/v1/event/espoo:195112/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}