Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helmet

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /linkedevents/v1/event/?format=api&last_modified_since=2020-04-07&page=7149&show_deleted=True
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 143916,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&last_modified_since=2020-04-07&page=7150&show_deleted=True",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&last_modified_since=2020-04-07&page=7148&show_deleted=True"
    },
    "data": [
        {
            "id": "espoo:171411",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2850/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p5007/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9244/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/2640569",
                        "sv": "https://www.lippu.fi/sv/artist/sellosali/sellosali-ensueno-flamenco-2640569/",
                        "en": "https://www.lippu.fi/en/artist/sellosali/sellosali-ensueno-flamenco-2640569/"
                    },
                    "price": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60655,
                    "license": "cc_by",
                    "created_time": "2019-12-02T09:12:20.191019Z",
                    "last_modified_time": "2019-12-02T09:12:20.191038Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{D04D6705-5539-4214-838C-7E04AA1E5DE8}/121748",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60655/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-12-02T09:12:20.139342Z",
            "last_modified_time": "2020-05-07T15:11:51.808719Z",
            "date_published": "2019-12-02T08:00:00Z",
            "start_time": "2020-05-16T16:00:00Z",
            "end_time": "2020-05-16T17: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,
            "location_extra_info": {
                "fi": "Sellosali",
                "sv": "Sellosalen",
                "en": "Sello Hall"
            },
            "short_description": {
                "fi": "Konsertti siirtyy lauantaille 8.5.2021 koronavirustilanteen vuoksi.",
                "sv": "Konserten flyttas till lördag 8.5.2021 på grund av Coronavirusepidemin.",
                "en": "The concert is moved to 8.5.2021 due to the corona virus outbreak."
            },
            "name": {
                "fi": "Ensueño Flamenco (SIIRTYY 8.5.2021)",
                "sv": "Ensueño Flamenco (FLYTTAS TILL 8.5.2021)",
                "en": "Ensueño Flamenco (MOVED TO 8.5.2021)"
            },
            "description": {
                "fi": "<p> <strong> <br>\nLa 16.5. klo 19</strong> <br> <br> <strong>HUOM! Konsertti siirtyy lauantaille 8.5.2021 koronavirustilanteen vuoksi. </strong> <br> <br>\nEnnakkoon ostetut liput käyvät uuteen ajankohtaan sellaisenaan.</p><p>Liput on myös mahdollista palauttaa Lippupisteen ohjeistuksen mukaisesti.</p><p>Rahanpalautusta voi hakea 30.6.2020 mennessä tästä linkistä <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p><p>Liput voi myös palauttaa postitse yhteystietoineen ja tilinumeroineen osoitteeseen: <br><br>\nLippupiste Oy / \"Tapahtuman nimi\" palautus<br>\nKalevantie 2 (B-talo)<br>\n33100 Tampere</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br>\nPalautusten maksamisessa voi olla suuren määrän vuoksi viiveitä.</p><p>Pahoittelemme tilannetta.</p><p>---------------------------------<br><br>\nViime maaliskuussa loppuumyyty Ensueño Flamenco -ryhmä palaa Suomeen toukokuussa! Tanssijapari José Carmona “Rapico” hurmaa klassisella, syvällisellä tanssillaan yhdessä Aylin Eleonoran modernin flamencotanssin kanssa. Laulaja Enrique Bermúdez “Piculaben” vaikuttava virtuoositeettilataus yhdessä flamencokitaroiden kanssa tuo esitykseen vielä lisää sähköä!</p><p>Kesto 1 h 40 min, sis.väliajan<br>\nLiput 25 € + toimitusmaksu (alk. 1 €), <a href=\"https://www.lippu.fi/eventseries/2640569\">lippu.fi</a><br> </p>",
                "sv": "<p> <strong> </strong> <br> <br> <strong>Lör 16.5 kl. 19</strong>\n</p><p> <strong>Obs! Konserten flyttas till lördag 8.5.2021 på grund av Coronavirusepidemin.</strong>\n</p><p>Köpta biljetter kan användas som sådana till nya tidpunkten.<br><br>\nDu kan även ansöka om återbetalning av biljettpengarna, för dina oanvända biljetter till den annullerade tillställningen fram till 30 juni 2020, på denna sida: <a href=\"https://Tors 9.4 kl. 19 Obs! Föreställningen flyttas till torsdag 10.9.2020 på grund av Coronavirusepidemin. Köpta biljetter kan användas som sådana till nya tidpunkten. Du kan även ansöka om återbetalning av biljettpengarna, för dina oanvända biljetter till den annullerade tillställningen fram till 30 juni 2020, på denna sida: https://web.lippu.fi/palautus Biljetter kan även returneras med kontaktinformation och bank nummer till följande adress: Lippupiste Oy / &quot;Evenemangets namn&quot; palautus Kalevavägen 2 (B-huset) 33100 Tammerfors Service- och leveransavgifter återbetalas inte. På grund av den mängd av återbetalningar vår behandling tid är längre än vanligt. Vi beklagar situationen.\">https://web.lippu.fi/palautus</a></p><p>Biljetter kan även returneras med kontaktinformation och bank nummer till följande adress: <br><br>\nLippupiste Oy / \"Evenemangets namn\" palautus<br>\nKalevavägen 2 (B-huset)<br>\n33100 Tammerfors</p><p>Service- och leveransavgifter återbetalas inte.<br>\nPå grund av den mängd av återbetalningar vår behandling tid är längre än vanligt.</p><p>Vi beklagar situationen.</p><p> <strong>-------------------------------------</strong> <br> <br>\nEnsueño Flamenco, som var utsålt i fjol, återvänder till Finland. Dansparet tar publiken med storm. José Carmona ”Rapico” charmar med sin klassiska, djupsinniga dans och Aylin Eleonora med sin moderna flamencodans. Den virtuosa sångaren Enrique Bermúdez ”Piculabe” imponerar med sina urladdningar. De eldiga flamencogitarrerna bidrar till att skapa en fullständigt sprakande föreställning. <br><br>\nLängd 1 h 40 min, inkl. paus<br><br><br>\nBiljetter 25 euro + expeditionsavgift (från 1 euro), <a href=\"https://www.lippu.fi/sv/artist/sellosali/sellosali-ensueno-flamenco-2640569/\">lippu.fi</a></p><p></p><p> <br> </p>",
                "en": "<p> <strong> <br> <br>\nSat 16 May at 19:00<br><br>\nNote! The concert is moved to Saturday 8.5.2021 due to the corona virus outbreak.</strong> <br> <br>\nPurchased tickets can be used as such for the replacing date.<br><br>\nYou can also request reimbursement for the price of tickets unused due to cancellation until June 30 2020 from: https://web.lippu.fi/palautus</p><p>Tickets can also be returned with contact information and bank account number to the following address:<br><br>\nLippupiste Oy / \"Title of event\" palautus<br>\nKalevantie 2 (B-talo)<br>\n33100 Tampere</p><p>Order- and Delivery costs and service charges are not reimbursed.<br>\nDue to large amounts of reimbursements the handling times are longer than usual.</p><p>We apologize for the inconvenience.</p><p>------------------------------------------------<br><br>\nAfter a sold-out show last March, the Ensueño Flamenco group is returning to Finland in May! Dancer José Carmona ‘Rapico’ will charm the audience with his classic, deep dancing together with Aylin Eleonora’s modern flamenco. The performance will be electrified by the impressive virtuoso charge of singer Enrique Bermúdez ‘Piculabe’ together with flamenco guitars!<br><br>\nDuration 1 h 40 min, incl. intermission</p><p>Tickets €25 + service fee (from €1), <a href=\"https://www.lippu.fi/en/artist/sellosali/sellosali-ensueno-flamenco-2640569/\">lippu.fi</a></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:171411/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:170945",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/paleface-helsinki-shangri-la-10-vuotta-sellosali-12614813/",
                        "sv": "https://www.lippu.fi/sv/event/paleface-helsinki-shangri-la-10-vuotta-sellosali-12614813/",
                        "en": "https://www.lippu.fi/en/event/paleface-helsinki-shangri-la-10-vuotta-sellosali-12614813/"
                    },
                    "price": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60654,
                    "license": "cc_by",
                    "created_time": "2019-12-02T09:12:20.076516Z",
                    "last_modified_time": "2019-12-02T09:12:20.076536Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{2784E2F8-32E5-4AB6-A31C-786CBDF6EEF5}/121467",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60654/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-12-02T09:12:20.016750Z",
            "last_modified_time": "2020-05-07T15:11:51.686149Z",
            "date_published": "2019-12-02T08:00:00Z",
            "start_time": "2020-05-15T16:00:00Z",
            "end_time": "2020-05-15T17:50: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,
            "location_extra_info": {
                "fi": "Sellosali",
                "sv": "Sellosalen",
                "en": "Sello Hall"
            },
            "short_description": {
                "fi": "Konsertti siirtyy 11.12.2020 koronavirustilanteen vuoksi.",
                "sv": "Konserten flyttas till 11.12.2020 på grund av Coronavirusepidemin.",
                "en": "The concert is moved to 11.12.2020 due to the Corona virus outbreak."
            },
            "name": {
                "fi": "Paleface: Helsinki-Shangri-La 10 vuotta (SIIRTYY PE 11.12.2020)",
                "sv": "Paleface: ”Helsinki – Shangri-la” 10 år (FLYTTAS TILL 11.12.2020)",
                "en": "Paleface: Helsinki – Shangri-La 10 years (MOVED TO 11.12.2020)"
            },
            "description": {
                "fi": "<p> <strong> <br> <br>\nPe 15.5. klo 19 </strong>\n</p><p> <strong>HUOM! Konsertti siirtyy perjantaille 11.12. koronavirustilanteen vuoksi. </strong>\n</p><p>Ennakkoon ostetut liput käyvät uuteen ajankohtaan sellaisenaan.</p><p>Liput on myös mahdollista palauttaa Lippupisteen ohjeistuksen mukaisesti:</p><p>Rahanpalautusta voi hakea 30.6.2020 mennessä tästä linkistä: <a href=\"https://web.lippu.fi/palautus\"><strong>https://web.lippu.fi/palautus</strong></a></p><p>Liput voi myös palauttaa postitse yhteystietoineen ja tilinumeroineen osoitteeseen:<br>\nLippupiste Oy / \"Tapahtuman nimi\" palautus<br>\nKalevantie 2 (B-talo)<br>\n33100 Tampere</p><p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br>\nPalautusten maksamisessa voi olla suuren määrän vuoksi viiveitä.</p><p>Pahoittelemme tilannetta</p><p>----------------------------</p><p></p><p>Eeppisistä livekeikoistaan tunnettu Paleface &amp; Räjähtävä Nyrkki-yhtye kokoaa uudelleen rivinsä ja tekee juhlakiertueen, kun Palefacen menestyslevy \"Helsinki-Shangri-La\":n ilmestymisestä tulee kuluneeksi kymmenen vuotta. Urbaanin folkin ja protestiräpin klassikkoalbumista tehdään samalla uudelleenjulkaisu, jossa on mukana live-levy. Kuule albumin klassikkokappaleet livenä tällä ainutlaatuisella keikalla.</p><p>Kokoonpano: Paleface laulu, räpit ja kitara / Emil Luukkonen, koskettimet / Aki Haarala, kitara / Heikki Laine, basso / Jaska Lukkarinen, rummut</p><p>Liput 24,50 € + toimitusmaksu (alk. 1 €), <a href=\"https://www.lippu.fi/event/paleface-helsinki-shangri-la-10-vuotta-sellosali-12614813/\">lippu.fi</a><br>\nOvelta 26 €</p><p>Kesto 1 h 50 min, sis. väliajan</p>",
                "sv": "<p> <strong> </strong> <br> <br> <strong>Fre 15.5 kl. 19<br><br>\nOBS! Konserten flyttas till fredag 11.12.2020 på grund av Coronavirusepidemin.</strong>\n</p><p>Köpta biljetter kan användas som sådana till nya tidpunkten.</p><p>Du kan även ansöka om återbetalning av biljettpengarna, för dina oanvända biljetter till den annullerade tillställningen fram till 30 juni 2020, på denna sida: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p><p></p><p>Biljetter kan även returneras med kontaktinformation och bank nummer till följande adress: </p><p>Lippupiste Oy / \"Evenemangets namn\" palautus</p><p>Kalevavägen 2 (B-huset)</p><p>33100 Tammerfors</p><p></p><p>Service- och leveransavgifter återbetalas inte.<br>\nPå grund av den mängd av återbetalningar vår behandling tid är längre än vanligt.</p><p></p><p>Vi beklagar situationen</p><p>---------------------------------------------------<br><br>\nPaleface &amp; Räjähtävä Nyrkki, som är känd för sina episka gig, drar ut på en jubelturné tio år efter succéalbumet ”Helsinki-Shangri-La”. <br><br>\nLängd 1 h 50 min, inkl. paus</p><p>Biljetter 24,50 euro + expeditionsavgift (från 1 euro), <a href=\"https://www.lippu.fi/sv/event/paleface-helsinki-shangri-la-10-vuotta-sellosali-12614813/\">lippu.fi</a><br>\nVid ingången 26 euro</p>",
                "en": "<p> <strong> </strong> <br> <br> <strong>Fri 15 May at 19:00 </strong> <br> </p><p> <strong>Note! The concert is moved to Friday 11.12.2020 due to the corona virus outbreak.</strong> <br> </p><p>Purchased tickets can be used as such for the replacing date.</p><p></p><p>You can also request reimbursement for the price of tickets unused due to cancellation until June 30 2020 from: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p><p></p><p>Tickets can also be returned with contact information and bank account number to the following address:</p><p>Lippupiste Oy / \"Title of event\" palautus</p><p>Kalevantie 2 (B-talo)</p><p>33100 Tampere</p><p></p><p>Order- and Delivery costs and service charges are not reimbursed.</p><p>Due to large amounts of reimbursements the handling times are longer than usual.</p><p></p><p>We apologize for the inconvenience</p><p>----------------------------------------------------<br><br>\nKnown for their epic live performances, Paleface &amp; Räjähtävä Nyrkki are reuniting their ranks and playing a tour to celebrate the 10th anniversary of their successful album ‘Helsinki – Shangri-La’. <br><br>\nDuration 1 h 50 min, incl. intermission <br><br>\nTickets €24.50 + service fee (from €1), <a href=\"https://www.lippu.fi/en/event/paleface-helsinki-shangri-la-10-vuotta-sellosali-12614813/\">lippu.fi</a><br>\n€26 at the door</p><p></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:170945/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:178163",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59312/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15  gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card."
                    },
                    "info_url": null,
                    "price": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15 gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.<br>",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-11T10:13:17.173997Z",
            "last_modified_time": "2020-05-07T15:11:51.537541Z",
            "date_published": "2015-03-04T09:20:00Z",
            "start_time": "2020-05-15T07:00:00Z",
            "end_time": "2020-05-15T09: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,
            "location_extra_info": {
                "fi": "Talomuseo Glims",
                "sv": "Glims gårdsmuseum",
                "en": "Glims Farmstead Museum"
            },
            "short_description": {
                "fi": "Työnäytöksessä tehdään piimäjuustoa.",
                "sv": "I arbetsuppvisningen tillverkar vi traditionell ost av surmjölk.",
                "en": "We make traditional cheese from sour milk (piimä)."
            },
            "name": {
                "fi": "PERUTTU: Työnäytös Talomuseo Glimsissä: valmistetaan juustoa",
                "sv": "INSTÄLLD: Hantverksdemonstration på Glims gårdsmuseum: vi tillverkar ost",
                "en": "CANCELLED: Work Demonstration at Glims Farmstead Museum: we make cheese"
            },
            "description": {
                "fi": "Työnäytöksessä valmistetaan piimäjuustoa perinteisin menetelmin.",
                "sv": "I arbetsuppvisningen tillverkar vi traditionell ost av surmjölk.",
                "en": "<p>We make traditional cheese from sour milk (piimä).</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espoonkaupunginmuseo.fi",
                "sv": "http://www.espoonkaupunginmuseo.fi/sv-FI/",
                "en": "http://www.espoonkaupunginmuseo.fi/"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:178163/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:171465",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/2639776",
                        "sv": "https://www.lippu.fi/sv/artist/costello-hautamaeki/sellosali-costello-hautamaeki-2639776/",
                        "en": "https://www.lippu.fi/en/artist/costello-hautamaeki/sellosali-costello-hautamaeki-2639776/"
                    },
                    "price": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60653,
                    "license": "cc_by",
                    "created_time": "2019-12-02T09:12:19.929731Z",
                    "last_modified_time": "2019-12-02T09:12:19.929750Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{30C903E1-339B-4FBC-A5A2-628FE2838CB7}/121802",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60653/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-12-02T09:12:19.889209Z",
            "last_modified_time": "2020-05-07T15:11:51.440361Z",
            "date_published": "2019-12-02T08:00:00Z",
            "start_time": "2020-05-14T16:00:00Z",
            "end_time": "2020-05-14T18: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,
            "location_extra_info": {
                "fi": "Sellosali",
                "sv": "Sellosalen",
                "en": "Sello Hall"
            },
            "short_description": {
                "fi": "Konsertti on peruttu koronavirustilanteen vuoksi.",
                "sv": "Konserten är inställd på grund av Coronavirusepidemin.",
                "en": "The concert is cancelled due to the corona virus outbreak."
            },
            "name": {
                "fi": "Costello Hautamäki (PERUTTU)",
                "sv": "Costello Hautamäki (INSTÄLLT)",
                "en": "Costello Hautamäki (CANCELLED)"
            },
            "description": {
                "fi": "<strong> <br> <br>\nTo 14.5. klo 19</strong> <p>Huom! Konsertti on peruttu koronavirustilanteen vuoksi.</p> <p>Liput on mahdollista palauttaa Lippupisteen ohjeistuksen mukaisesti:<br>\nRahanpalautusta voi hakea 30.6.2020 mennessä tästä linkistä: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p> <p>Liput voi myös palauttaa postitse yhteystietoineen ja tilinumeroineen osoitteeseen:<br>\nLippupiste Oy / \"Tapahtuman nimi\" palautus<br>\nKalevantie 2 (B-talo)<br>\n33100 Tampere</p> <p>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br>\nPalautusten maksamisessa voi olla suuren määrän vuoksi viiveitä.</p> <p>Pahoittelemme tilannetta</p> <p></p> <p></p> <p></p>\nPopeda-ikoni, kitaristi Costello Hautamäki tekee keväällä kiertueen akustisella trio-kokoonpanolla. Costellon settilista koostuu muun muassa Popedan, Hurriganesin sekä hänen omista jo ikivihreistä suomirock-klassikoistaan. Ja saattaapa setistä löytyä myös muutama ulkomainen rokkiklassikkokin!<br> <br>\nKesto 2 h, sis. väliajan<br>\nLiput 20 € + toimitusmaksu (alk. 1 €), <a href=\"https://www.lippu.fi/eventseries/2639776\">lippu.fi</a>",
                "sv": "<strong> <br> <br>\nTors 14.5 kl. 19</strong> <br> <p>OBS! Konserten är inställd på grund av Coronavirusepidemin.</p> <p>Du kan ansöka om återbetalning av biljettpengarna, för dina oanvända biljetter till den annullerade tillställningen fram till 30 juni 2020, på denna sida: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p> <p>Biljetter kan även returneras med kontaktinformation och bank nummer till följande adress: <br>\nLippupiste Oy / \"Evenemangets namn\" palautus<br>\nKalevavägen 2 (B-huset)<br>\n33100 Tammerfors</p> <p>Service- och leveransavgifter återbetalas inte.<br>\nPå grund av den mängd av återbetalningar vår behandling tid är längre än vanligt.</p> <p>Vi beklagar situationen</p>\nGitarristen Costello Hautamäki från Popeda turnerar i en akustisk trio. Spellistan består av suomirockklassiker av bl.a. Popeda och Hurriganes och av artisten själv. Också någon utländsk rockklassiker kan ha hittat sin väg bland låtarna.<br><br>\nLängd 2 h, inkl. paus<br><br> <p>Biljetter 20 euro + expeditionsavgift (från 1 euro), <a href=\"https://www.lippu.fi/sv/artist/costello-hautamaeki/sellosali-costello-hautamaeki-2639776/\">lippu.fi</a><br> </p>\n<p></p>",
                "en": "<strong> </strong><p> <br> <strong>Thu 14 May at 19:00</strong> <br> </p><p></p><p>Note! The concert is cancelled due to the corona virus outbreak.</p><p>You can request reimbursement for the price of tickets unused due to cancellation until June 30 2020 from: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p><p>Tickets can also be returned with contact information and bank account number to the following address:<br>\nLippupiste Oy / \"Title of event\" palautus<br>\nKalevantie 2 (B-talo)<br>\n33100 Tampere</p><p>Order- and Delivery costs and service charges are not reimbursed.<br>\nDue to large amounts of reimbursements the handling times are longer than usual.</p><p>We apologize for the inconvenience</p><p></p><p></p><p></p><p>Iconic Popeda guitarist Costello Hautamäki will play an acoustic trio tour in the spring. Costello’s setlist consists of songs by bands like Popeda and Hurriganes as well as his own tunes that have already become evergreen classics of Finnish rock. The set may even feature a few foreign rock classics!<br><br>\nDuration 2 h, incl. intermission<br><br><br>\nTickets €20 + service fee (from €1), <a href=\"https://www.lippu.fi/en/artist/costello-hautamaeki/sellosali-costello-hautamaeki-2639776/\">lippu.fi</a></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:171465/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:166068",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:58548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Liput 25/19/11 € + toimitusmaksu (alk. 1 €)",
                        "sv": "Biljetter från 25/19/11 € + leveransavgift",
                        "en": "Tickets from €25/19/11 + delivery fee"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/lippuja.html?affiliate=ADV&doc=artistPages%2Ftickets&fun=artist&action=tickets&erid=2457596&includeOnlybookable=false&xtmc=im_walde&xtnp=1&xtcr=1",
                        "sv": "https://www.lippu.fi/tickets.html?affiliate=ADV&includeOnlybookable=false&xtcr=1&xtnp=1&erid=2457596&doc=artistPages/tickets&action=tickets&xtmc=im_walde&fun=artist&language=sv",
                        "en": "https://www.lippu.fi/biljetter.html?affiliate=ADV&includeOnlybookable=false&xtcr=1&xtnp=1&erid=2457596&doc=artistPages/tickets&action=tickets&xtmc=im_walde&fun=artist&language=en"
                    },
                    "price": {
                        "fi": "Liput 25/19/11 € + toimitusmaksu (alk. 1 €)",
                        "sv": "Biljetter från 25/19/11 € + leveransavgift",
                        "en": "Tickets from €25/19/11 + delivery fee"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 56137,
                    "license": "cc_by",
                    "created_time": "2019-06-07T10:13:54.954625Z",
                    "last_modified_time": "2019-06-07T10:13:54.954647Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{C3F5A4BE-C5D8-4B06-AE9F-13482A06A5EC}/117280",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/56137/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-06-07T10:13:54.899811Z",
            "last_modified_time": "2020-05-07T15:11:51.349146Z",
            "date_published": "2019-06-07T08:15:00Z",
            "start_time": "2020-05-14T16:00:00Z",
            "end_time": "2020-05-14T18: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,
            "location_extra_info": {
                "fi": "Espoon kulttuurikeskus, Tapiolasali",
                "sv": "Esbo kulturcentrum, Tapiolasalen",
                "en": "Espoo Cultural Centre, Tapiola Hall"
            },
            "short_description": {
                "fi": "Mario Venzago tuo kauden päätöskonserttiin yllätyksellisen ja harvinaisen yhdistelmän romantiikan keskeisiä säveltäjiä ja unohdettuja teoksia.",
                "sv": "Mario Venzago förser säsongens avslutningskonsert med en överraskande och sällsynt kombination av romantikens centrala tonsättare och bortglömda verk.",
                "en": "Mario Venzago brings an exciting combination to the concluding concert of the season: Romantic composers both famous and forgotten."
            },
            "name": {
                "fi": "PERUTTU: Tapiola Sinfonietta: Im Walde",
                "sv": "INSTÄLLD: Tapiola Sinfonietta: Im Walde",
                "en": "CANCELLED: Tapiola Sinfonietta: Im Walde"
            },
            "description": {
                "fi": "<p> <br> <strong>Mario Venzago</strong>, kapellimestari<br><strong>Ilya Gringolts</strong>, viulu</p><p>Franz Liszt: Sinfoninen runo nro 13 ”Kehdosta hautaan”<br>\nFranz Schubert: Konserttikappale viululle ja orkesterille D-duuri<br>\nFranz Schubert: Rondo viululle ja jousiorkesterille A-duuri<br>\nFranz Schubert: Poloneesi viululle ja jousiorkesterille B-molli<br>\nJoachim Raff: Sinfonia nro 3 \"Metsässä”</p><p>Mario Venzago tuo kauden päätöskonserttiin yllätyksellisen ja harvinaisen yhdistelmän romantiikan keskeisiä säveltäjiä ja unohdettuja teoksia<em>.</em> Franz Lisztin sinfoninen runo keinuu ja liikkuu kuin elämä: kehdosta hautaan. Virtuoottinen Ilya Gringolts syventyy Schubertin viehättäviin viuluteoksiin. Kevätkauden päättää teosharvinaisuus; Joachim Raffin kolmas sinfonia, ”Metsässä”, joka johdattaa kuulijan matkalle luontoon.</p>",
                "sv": "<p> <br> <strong>Mario Venzago</strong>, dirigent<br><strong>Ilya Gringolts</strong>, violin<br><br>\nFranz Liszt: Symfonisk dikt nr 13 ”Från vaggan till graven”<br>\nFranz Schubert: Konsertstycke för violin och orkester D-dur<br>\nFranz Schubert: Rondo för violin och stråkorkester A-dur<br>\nFranz Schubert: Polonäs för violin och stråkorkester B-moll<br>\nJoachim Raff: Symfoni nr 3 \"I skogen”<br><br>\nMario Venzago förser säsongens avslutningskonsert med en överraskande och sällsynt kombination av romantikens centrala tonsättare och bortglömda verk. Franz Liszts symfoniska dikt gungar och rör sig som livet: från vaggan till graven. Den virtuose Ilya Gringolts fördjupar sig i Schuberts förtjusande violinverk. Vårsäsongen avslutas med ett raritet: Joachim Raffs tredje symfoni, ”I skogen”, som tar med sig lyssnaren på en resa ut i naturen.</p>",
                "en": "<p> <br> <strong>Mario Venzago</strong>, conductor<br><strong>Ilya Gringolts</strong>, violin<br><br>\nFranz Liszt: Symphonic Poem no. 13 “From the Cradle to the Grave”<br>\nFranz Schubert:<br>\nKonzertstück for violin and orchestra in D major<br>\nRondo for violin and strings in A major<br>\nPolonaise for violin and strings in B flat minor<br>\nJoachim Raff: Symphony no. 3 ‘In the forest’<br><br>\nMario Venzago brings an exciting combination to the concluding concert of the season: Romantic composers both famous and forgotten. A tone poem by Franz Liszt rocks and sways like life itself, from cradle to tomb. Ilya Gringolts gives a virtuoso performance of charming violin works by Schubert. The programme concludes with a rarity, Symphony no. 3 ‘In the forest’ by Joachim Raff, a journey through nature.</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": {
                "fi": "Tapiola Sinfonietta",
                "sv": "Tapiola Sinfonietta",
                "en": "Tapiola Sinfonietta"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:166068/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:178156",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59312/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15  gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card."
                    },
                    "info_url": null,
                    "price": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15 gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card.<br>"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-11T10:13:16.991511Z",
            "last_modified_time": "2020-05-07T15:11:51.218221Z",
            "date_published": "2019-02-25T10:25:00Z",
            "start_time": "2020-05-14T06:30:00Z",
            "end_time": "2020-05-14T09: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,
            "location_extra_info": {
                "fi": "Talomuseo Glims",
                "sv": "Glims gårdsmuseum",
                "en": "Talomuseo Glims"
            },
            "short_description": {
                "fi": "Tule silittämään shetlanninponi Bellaa!",
                "sv": "Kom och klappa shetlandsponny Bella!",
                "en": "Welcome to pet Shetland pony Bella!"
            },
            "name": {
                "fi": "PERUTTU: Shetlanninponi Bella Talomuseo Glimsissä",
                "sv": "INSTÄLLD: Shetlandsponny Bella på Glims gårdsmuseum",
                "en": "CANCELLED: Shetland pony Bella at Glims farmstead museum"
            },
            "description": {
                "fi": "Tule silittämään shetlanninponi Bellaa!",
                "sv": "Kom och klappa shetlandsponny Bella!",
                "en": "<p>Welcome to pet Shetland pony Bella!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espoonkaupunginmuseo.fi",
                "sv": "http://www.espoonkaupunginmuseo.fi/sv-FI/",
                "en": "http://www.espoonkaupunginmuseo.fi"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:178156/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:178162",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59312/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15  gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card."
                    },
                    "info_url": null,
                    "price": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15 gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.<br>",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card."
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-11T10:13:16.809050Z",
            "last_modified_time": "2020-05-07T15:11:51.018527Z",
            "date_published": "2015-03-04T09:20:00Z",
            "start_time": "2020-05-13T07:00:00Z",
            "end_time": "2020-05-13T09: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,
            "location_extra_info": {
                "fi": "Talomuseo Glims",
                "sv": "Glims gårdsmuseum",
                "en": "Glims Farmstead Museum"
            },
            "short_description": {
                "fi": "Työnäytöksessä tehdään piimäjuustoa.",
                "sv": "I arbetsuppvisningen tillverkar vi traditionell ost av surmjölk.",
                "en": "We make traditional cheese from sour milk (piimä)."
            },
            "name": {
                "fi": "PERUTTU: Työnäytös Talomuseo Glimsissä: valmistetaan juustoa",
                "sv": "INSTÄLLD: Hantverksdemonstration på Glims gårdsmuseum: vi tillverkar ost",
                "en": "CANCELLED: Work Demonstration at Glims Farmstead Museum: we make cheese"
            },
            "description": {
                "fi": "Työnäytöksessä valmistetaan piimäjuustoa perinteisin menetelmin.",
                "sv": "I arbetsuppvisningen tillverkar vi traditionell ost av surmjölk.",
                "en": "<p>We make traditional cheese from sour milk (piimä).</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espoonkaupunginmuseo.fi",
                "sv": "http://www.espoonkaupunginmuseo.fi/sv-FI/",
                "en": "http://www.espoonkaupunginmuseo.fi/"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:178162/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:171327",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60484,
                    "license": "cc_by",
                    "created_time": "2019-11-27T11:12:25.050232Z",
                    "last_modified_time": "2019-11-27T11:12:25.050253Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{A2176645-B4AF-49A3-A666-C5AF2B87C7CA}/121704",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60484/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-11-27T11:12:24.943954Z",
            "last_modified_time": "2020-05-07T15:11:50.868232Z",
            "date_published": "2019-11-27T08:00:00Z",
            "start_time": "2020-05-12T10:30:00Z",
            "end_time": "2020-05-12T11:43: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,
            "location_extra_info": {
                "fi": "Sellosali",
                "sv": "Sellosalen",
                "en": "Sello Hall"
            },
            "short_description": {
                "fi": "Näytös on siirretty tiistaille 15.9.2020 koronavirustilanteen vuoksi.",
                "sv": "Filmvisningen flyttas till tisdag 15.9.2020 på grund av Coronavirusepidemin.",
                "en": "The film screening is moved to Tuesday 15.9.2020 due to the corona virus outbreak."
            },
            "name": {
                "fi": "Iltapäiväelokuva: Aatos ja Amine (SIIRTYY 15.9.)",
                "sv": "Eftermiddagsfilm: Aatos ja Amine (FLYTTAS TILL 15.9.2020)",
                "en": "Afternoon film: Gods of Molenbeek (MOVED TO 15.9.2020)"
            },
            "description": {
                "fi": "<p> <a href=\"https://www.espoo.fi/download/noname/{CEE1433D-43D7-4438-8935-D1C2F561C16F}/121698\"> </a>\n</p><p> <strong>Ti 12.5. klo 13.30<br><br>HUOM! Näytös on siirretty tiistaille 15.9.2020 koronavirustilanteen vuoksi. </strong>\n</p><p>Kuusivuotias Aatos ja hänen ystävänsä etsivät elämän merkityksiä pommi-iskujen ravistelemassa maailmassa. Molenbeekin kaupunginosa Brysselissä on mediassa leimattu jihadismin pääkaupungiksi, mutta 6-vuotiaille pojille Aatokselle ja Aminelle se on tavallista kotiseutua. Pojat etsivät yhdessä vastauksia isoihin kysymyksiin. Aatos haluaa itselleen oman jumalan koska Aminella on jo Allah, mutta asiaa mutkistaa Aatoksen ystävä Flo, jonka mielestä ihmiset, jotka uskovat Jumalaan ovat tulleet hulluiksi. Aikuisten maailma keskeyttää väkivaltaisesti lasten leikit kun lähistön metroasemalle tehdään terrori-isku. Panssariajoneuvot, aseistetut sotilaat ja poliisit täyttävät kadut. Iltasadut herättävät väkivaltaisia kuvia ja jopa ystävyys joutuu koetukselle.</p><p>Nykymaailmassa, jossa rajalinjoja meihin ja muihin, \"toisiin\", tehdään nimenomaan uskontojen perusteella, päähenkilön ennakkoluuloton asenne näyttää mikroskooppisessa mittakaavassa, kuinka kulttuurisilla rajapinnoilla voi aivan hyvin elää ilman mustavalkoisia jakolinjoja. Katsomme maailmaa uteliaan pojan silmin, jonka leikeissä ystävien kanssa hypitään kepeästi muslimeista kristinuskoon ja kreikan mytologiaan.</p><p>Suomi, 2019<br>\nKäsikirjoitus ja ohjaus: Reetta Huhtanen<br><br>\nIkäraja: S<br>\nKesto: 1h 13 min<br><br>\nVapaa pääsy</p><p></p><p>HUOM! Ulko-ovet avataan klo 12.30 ja saliin pääsee noin 30 min ennen esityksen alkua.<br>\nPaikat täytetään saapumisjärjestyksessä.</p><p>Muutokset mahdollisia</p><br>",
                "sv": "<p> <a href=\"https://www.espoo.fi/download/noname/{CEE1433D-43D7-4438-8935-D1C2F561C16F}/121698\"> </a>\n</p><p> <strong>Tis 12.5 kl. 13.30<br><br>\nObs! Filmvisningen flyttas till tisdag 15.9.2020 på grund av Coronavirusepidemin.</strong> <br> <br>\nSexåriga Aatos och hans vänner söker livets mening i en värld som skakas av bombattacker. Stadsdelen Molenbeek i Bryssel har i medierna stämplats som jihadismens huvudstad, men för de sexåriga pojkarna Aatos och Amine är det ett hem helt enkelt. Pojkarna söker tillsammans svar på stora frågor. Aatos vill ha en egen gud för att Amine redan har Allah, men det kompliceras av Aatos vän Flo, som anser att människor som tror på Gud har blivit galna. Barnens lekar avbryts när de vuxnas värld våldsamt tränger sig på: en terroristattack på metrostationen i närheten. Pansarfordon, beväpnade soldater och poliser fyller gatorna. Kvällsgatorna väcker våldsamma bilder och till och med vänskap testas.<br><br>\nI dagens värld dras gränserna mellan oss och dem, ”de andra”, uttryckligen efter religion. Huvudpersonens fördomsfria attityd visar i det lilla hur man mycket väl kan leva utan skiljelinjer. Vi ser på världen med en nyfiken pojkes ögon. I lekarna hoppar vännerna lätt som en plätt från muslimer till kristendom och grekisk mytologi. <br><br>\nFinland, 2019<br>\nRegi och manus: Reetta Huhtanen<br><br>\nÅldersgräns: Tillåten<br>\nLängd 1 h 13 min<br><br>\nFritt inträde<br><br>\nOBS! Ytterdörrarna öppnas kl. 12.30 och salen cirka 30 minuter före. Platserna fylls alltefter.</p><p></p><p></p><p></p><br>",
                "en": "<p> <a href=\"https://www.espoo.fi/download/noname/{CEE1433D-43D7-4438-8935-D1C2F561C16F}/121698\"> </a>\n</p><p> <strong>Tue 12 May at 13:30</strong> <br> <br> <strong>Note! The film screening is moved to Tuesday 15.9.2020 due to the corona virus outbreak.</strong> <br> <br>\nSix-year-old Aatos and his friend are searching for the meanings of life in a world shaken by bomb attacks. The district of Molenbeek-Saint-Jean in Brussels has become world-famous as a centre of jihadism, but for six-year-old boys Aatos and Amine, it is a familiar home. Together, they search for the answers to life’s big questions. Aatos wants a God of his own because Amine has Allah, but things are made more complicated by Aatos’s friend Flo, who is convinced that anyone who believes in God is completely nuts. The children’s playing is brutally interrupted by the adult world when terrorists attack the nearby metro station. The streets are filled by armoured vehicles, armed soldiers and police. Bedtime stories stir thoughts of violence, and even friendship is put to test.<br><br>\nIn the modern world, where borderlines between ‘us’ and ‘them’ are drawn on the basis of religion, the protagonist’s unbiased approach shows on the microscopic scale how you can very well live at cultural interfaces without black-and-white dividing lines. We look at the world through the eyes of a curious boy who plays with his friends, easily skipping from Muslims to Christianity and Greek mythology.</p><p>Finland, 2019<br>\nDirector and scriptwriter: Reetta Huhtanen</p><p>Age limit: S<br>\nDuration: 1 h 13 min<br><br>\nFree admission<br><br>\nNOTE: The entrance doors will be opened at 12:30, and the audience will be allowed into the hall about 30 min before the start of the film. The seats will be filled in the order of arrival.</p><p></p><p></p><br>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:171327/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:178155",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59312/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4934/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15  gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card."
                    },
                    "info_url": null,
                    "price": {
                        "fi": "Museon pääsymaksut 4/3 €. Alle 18-v. vapaa pääsy. Keskiviikkoisin vapaa pääsy. Kesä-, heinä- ja elokuussa torstaisin klo 15 alkaen vapaa pääsy. Vuosikortti 15 €. Kaikukorttikohde. Museokorttikohde.",
                        "sv": "Inträdesavgift 4/3 €. Under 18-åringar gratis inträde. Onsdagar gratis inträde. I juni, juli och augusti från kl. 15 gratis inträde. Årskort 15 €. Gratis inträde med Kaikukortti. Gratis inträde med Museikortet.",
                        "en": "Museum admission fee 4/3 €. Free admission for visitors under 18. Free admission on Wednesdays. Free admission from 3 pm on Thursdays in June, July and August. Annual ticket 15 €. Free admission with Kaikukortti card. Free admission with Museum Card.<br>"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-11T10:13:16.489786Z",
            "last_modified_time": "2020-05-07T15:11:50.804368Z",
            "date_published": "2019-02-25T10:25:00Z",
            "start_time": "2020-05-12T06:30:00Z",
            "end_time": "2020-05-12T09: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,
            "location_extra_info": {
                "fi": "Talomuseo Glims",
                "sv": "Glims gårdsmuseum",
                "en": "Talomuseo Glims"
            },
            "short_description": {
                "fi": "Tule silittämään shetlanninponi Bellaa!",
                "sv": "Kom och klappa shetlandsponny Bella!",
                "en": "Welcome to pet Shetland pony Bella!"
            },
            "name": {
                "fi": "PERUTTU: Shetlanninponi Bella Talomuseo Glimsissä",
                "sv": "INSTÄLLD: Shetlandsponny Bella på Glims gårdsmuseum",
                "en": "CANCELLED: Shetland pony Bella at Glims farmstead museum"
            },
            "description": {
                "fi": "Tule silittämään shetlanninponi Bellaa!",
                "sv": "Kom och klappa shetlandsponny Bella!",
                "en": "<p>Welcome to pet Shetland pony Bella!</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espoonkaupunginmuseo.fi",
                "sv": "http://www.espoonkaupunginmuseo.fi/sv-FI/",
                "en": "http://www.espoonkaupunginmuseo.fi"
            },
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:178155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:178086",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:58548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "15 € + toimitusmaksu (alk. 1 €)",
                        "en": "€15 + delivery fee (from €1)"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bergman-in-uganda-espoon-kaupunginteatteri-espoon-kaupunginteatteri-12494044/",
                        "en": "https://www.lippu.fi/event/bergman-in-uganda-espoon-kaupunginteatteri-espoon-kaupunginteatteri-12494044/"
                    },
                    "price": {
                        "fi": "15 € + toimitusmaksu (alk. 1 €), lippu.fi",
                        "en": "€15 + delivery fee (from €1), lippu.fi"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 63581,
                    "license": "cc_by",
                    "created_time": "2020-03-09T12:13:16.869515Z",
                    "last_modified_time": "2020-03-09T12:13:16.869535Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{FF8237D2-2A1B-4051-A0B0-F3A22891887C}/126087",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/63581/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-03-09T12:13:16.761168Z",
            "last_modified_time": "2020-05-07T15:11:50.649364Z",
            "date_published": "2020-03-09T10:37:00Z",
            "start_time": "2020-05-11T16:00:00Z",
            "end_time": "2020-05-11T17: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,
            "location_extra_info": {
                "fi": "Espoon kulttuurikeskus, Louhisali",
                "en": "Espoo Cultural Centre, Louhi Hall"
            },
            "short_description": {
                "fi": "Esityksellinen elokuva-installaatio. Ugandassa on muutaman viime vuoden aikana noussut esiin uudenlainen kansantarinoiden kertoja: veejay. He tekevät työtään tilapäisissä elokuvasaleissa, joita pystytetään slummeihin ja syrjäisiin kyliin.",
                "en": "In Uganda, a new kind of folk storyteller has emerged in recent years: veejays. These are people who work in makeshift cinema halls in slums and remote villages."
            },
            "name": {
                "fi": "PERUTTU Espoon Kaupunginteatteri: Bergman in Uganda",
                "en": "CANCELLED: Espoo City Theatre: Bergman in Uganda"
            },
            "description": {
                "fi": "<p> </p><p>Tämä tapahtuma on PERUTTU.</p><p>Esityksellinen elokuva-installaatio<br><br>\nUgandassa on muutaman viime vuoden aikana noussut esiin uudenlainen kansantarinoiden kertoja: veejay. He tekevät työtään tilapäisissä elokuvasaleissa, joita pystytetään slummeihin ja syrjäisiin kyliin. Heidän taiteensa on elokuvien – yleensä Hollywoodin kassamagneettien – kääntäminen, tässä ja nyt, paikalliselle yleisölle.<br><br>\nRuotsalainen taitelija Markus Öhrn (joka parhaiten muistetaan teatteriesityksistä Conte d’Amour 2011 ja We Love Africa and Africa Loves Us 2012) keksi viedä Ingmar Bergmanin elokuvia ugandalaisiin veejay-elokuvateattereihin. Seisten selkä valkokankaaseen, Öhrn kuvasi kertojaa puhumassa elokuvan repliikkejä. Samanaikaisesti veejay tulkitsee Bergmanin töitä keskeisesti leimaavaa, eurooppalaisesta kulttuurista ja elämäntavasta ammentavaa, monisyistä itsetutkiskelua. Kuinka katsoa elokuvaa Naisen naamio – Persona (1966) nykypäivän hökkelikylässä Kampalassa? Ironialla leikitellen Markus Öhrn näyttää eurooppalaiselle katsojalle, kuinka afrikkalainen katsoja häntä katsoo. Hämmentävä roolien vaihtuminen johdattelee meidät oman perspektiivimme pohdintaan.<br><br>\nEnsiesitys toukokuussa 2014 Kunstenfestivaldesarts, Brysseli.<br><br>\nTaiteellinen ryhmä:<br>\nKonsepti, kuvaus &amp; leikkaus <strong>Markus Öhrn</strong><br>\nElokuvana nähdään Ingmar Bergmanin elokuva Naisen naamio – Persona (1966)<br>\nKertoja VJ HD<br>\nTUOTANTO<br>\nTuotanto Markus Öhrn, Swedish Subterranean Movie Company<br>\nYhteistyössä Kunstenfestivaldesarts, Swedish Arts Grant Committee, Stadsschouwburg Amsterdam, Volksbühne am Rosa Luxemburgplatz (Berliini)</p><p>Kesto: 1 h 30 min, ei väliaikaa<br>\nEsityskieli: Luganda, tekstitys englanniksi</p><p></p><p></p>",
                "en": "<p> </p><p>This performance is CANCELLED.</p><p>In Uganda, a new kind of folk storyteller has emerged in recent years: veejays. These are people who work in makeshift cinema halls in slums and remote villages. Their art consists of directly translating movies – usually Hollywood blockbusters – for the local audience. Swedish artist Markus Öhrn came up with the idea of showing the films of Ingmar Bergman in this particular cultural context. With his back to the big screen, Öhrn filmed the narrators issuing words and explanations of the complex introspections on European culture and lifestyle that are so emblematic of Bergman’s work. How does one watch Persona (1966) in the shantytowns of Kampala today? Not without irony, Markus Öhrn allows the European spectator to see how the African viewer looks at him. A confusing reversal that induces us to reflect on our own perspective. </p><p>Premiere May 2014, Kunstenfestivaldesarts (Brussels) </p><p>Concept, camera &amp; editing by Markus Öhrn<br>\nFeaturing Persona (1966) by Ingmar Bergman with VJ HD<br>\nProduction Markus Öhrn, Swedish Subterranean Movie Company<br>\nSupported by Kunstenfestivaldesarts, Swedish Arts Grant Committee, Stadsschouwburg Amsterdam, Volksbühne am Rosa Luxemburgplatz (Berliini)</p><p>In co-operation with Epoo Ciné International Film Festival </p><p>Duration: 1 h 30 min, no intermission</p><p>Language: Luganda, subtitles in English</p><p></p><p></p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://espoonteatteri.fi/esitykset/bergman-in-uganda/",
                "en": "https://espoonteatteri.fi/esitykset/bergman-in-uganda/"
            },
            "provider": {
                "fi": "Espoon Kaupunginteatteri",
                "en": "Espoo City Theatre"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:178086/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:170977",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 43737,
                    "license": "cc_by",
                    "created_time": "2018-04-26T15:23:26.752531Z",
                    "last_modified_time": "2018-04-26T15:23:26.752552Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{146BB6FD-DAA2-4048-B190-9FAC572DE753}/88033",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43737/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-11-14T16:12:40.739150Z",
            "last_modified_time": "2020-05-07T15:11:50.584189Z",
            "date_published": "2019-11-14T13:02:00Z",
            "start_time": "2020-05-11T11:00:00Z",
            "end_time": "2020-05-11T16: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,
            "location_extra_info": {
                "en": "Sello hall"
            },
            "short_description": {
                "en": "A blood donation can help up to three patients and may even save someone’s life."
            },
            "name": {
                "en": "Reach out your hand – donate blood at Sello Hall 11.05."
            },
            "description": {
                "en": "<p> </p><p> <strong>Mon 11th May at 14-19</strong>\n</p><p>Blood donors needed during the COVID-19 epidemic<br><br>\nThe Blood Service continues to operate during the emergency to provide patients with blood products every day. </p><p>Coming to a blood donation point is still safe. Donating blood will not lower your resistance to infection.</p><p>Service points are extremely careful about hygiene in this situation. Surfaces are cleaned more often and hand disinfectant is available at all locations.</p><p>A blood donation can help up to three patients and may even save someone’s life. You can give blood if you are a healthy 18–70-year-old and weigh at least 50 kg. First-time donors must be under the age of 60. Bring an official ID with you when you arrive. Toll-free information number: 0800 0 5801.</p><p>Further information: <a href=\"https://www.bloodservice.fi/\">bloodservice.fi</a> and <a href=\"https://sovinkoluovuttajaksi.fi/#\">sovinkoluovuttajaksi.fi</a></p><p></p><p></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:170977/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:170967",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 43737,
                    "license": "cc_by",
                    "created_time": "2018-04-26T15:23:26.752531Z",
                    "last_modified_time": "2018-04-26T15:23:26.752552Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{146BB6FD-DAA2-4048-B190-9FAC572DE753}/88033",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43737/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-11-14T16:12:40.563100Z",
            "last_modified_time": "2020-05-07T15:11:50.516743Z",
            "date_published": "2019-11-14T12:56:00Z",
            "start_time": "2020-05-11T11:00:00Z",
            "end_time": "2020-05-11T16: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,
            "location_extra_info": {
                "sv": "Sellosalen"
            },
            "short_description": {
                "sv": "En blodgivning hjälper upp till tre patienter och kan rädda någons liv."
            },
            "name": {
                "sv": "11.5 Räck ut din hand – blodgivning i Sellosalen"
            },
            "description": {
                "sv": "<p> </p> <p> <strong>Mån 11.5 kl. 14–19</strong> <br> <br>\nBlodgivare behövs också under coronaepidemin<br><br>\nBlodtjänst fungerar även under undantagsförhållanden för att trygga att patienterna får blodprodukter varje dag. </p> <p>Det är fortfarande tryggt att komma till blodgivningen. Blodgivning försämrar inte immuniteten. Personalen på blodgivningsplatserna fäster nu stor uppmärksamhet vid hygienen. Till exempel rengöringen av ytor har ökats och bl.a. handsprit finns att få på alla platser.</p> <p>En blodgivning hjälper upp till tre patienter och kan rädda någons liv. Du kan donera blod om du är frisk, 18–70 år gammal och väger minst 50 kilo. En ny blodgivare ska vara under 60 år gammal. Ta med officiellt identitetsbevis. Avgiftsfritt infonummer 0800 0 5801. Ytterligare upplysningar: <a href=\"https://www.blodtjanst.fi/\">blodtjanst.fi</a> och <a href=\"https://sovinkoluovuttajaksi.fi/#\">sovinkoluovuttajaksi.fi</a></p>\n<p></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:170967/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:170963",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p38424/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 43737,
                    "license": "cc_by",
                    "created_time": "2018-04-26T15:23:26.752531Z",
                    "last_modified_time": "2018-04-26T15:23:26.752552Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{146BB6FD-DAA2-4048-B190-9FAC572DE753}/88033",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/43737/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2019-11-14T16:12:40.365509Z",
            "last_modified_time": "2020-05-07T15:11:50.405255Z",
            "date_published": "2019-11-14T12:49:00Z",
            "start_time": "2020-05-11T11:00:00Z",
            "end_time": "2020-05-11T16: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,
            "location_extra_info": {
                "fi": "Sellosali"
            },
            "short_description": {
                "fi": "Verenluovutus auttaa jopa kolmea potilasta ja voi pelastaa jonkun hengen. Voit luovuttaa verta, jos olet terve, 18–70-vuotias ja painat vähintään 50 kiloa."
            },
            "name": {
                "fi": "Ojenna kätesi – verenluovutusta Sellosalissa 11.5."
            },
            "description": {
                "fi": "<p> </p><p> <strong>Ma 11.5. klo 14-19</strong>\n</p><p>Verenluovuttajia tarvitaan myös epidemia-aikana!</p><p>Kun koronavirusepidemia leviää Suomessa, verenluovuttajia tarvitaan yhä muun muassa vakavasti sairaille ja onnettomuuksien uhreille.</p><p>SPR Veripalvelu järjestää verenluovutustilaisuudet Sellosalin lämpiössä kevään aikana ilmoitetun mukaisesti ma 30.3., 11.5. ja 1.6. klo 14-19.</p><p>Veripalvelu toimii myös poikkeusoloissa, ja verenluovutuksessa on käytössä pandemiavarautumistoimet. Verenluovutuksessa on lisätty pintojen puhdistusta ja jokainen luovuttaja ohjataan käsienpesuun tai käsien desinfiointiin luovutustilaan saapuessaan. Verenluovutus ei laske immuniteettia.</p><p>Luovutustiloissa yhtä aikaa olevien määrää rajoitetaan ja saapuvien luovuttajien hyvä terveydentila tarkistetaan. Lisäksi luovuttajia ohjataan pitämään vähintään metrin väli tilassa oleviin muihin luovuttajiin.</p><p> <a href=\"https://www.veripalvelu.fi/uutiset/verenluovuttajia-tarvitaan-my%C3%B6s-epidemia-aikana1?fbclid=IwAR1lGpvXWWAAiNR5wZcZ64evy5a7yBJxxY7u-fqb20d_dRflyVwdsI2DLyg\">Lisätiedot</a>\n</p><p>Verenluovutus auttaa jopa kolmea potilasta ja voi pelastaa jonkun hengen. Voit luovuttaa verta, jos olet terve, 18–70-vuotias ja painat vähintään 50 kiloa. Uuden luovuttajan tulee olla alle 60-vuotias. Ota mukaasi virallinen henkilötodistus. Maksuton infonumero 0800 0 5801. Lisätietoja: <a href=\"http://Verenluovutus auttaa jopa kolmea potilasta ja voi pelastaa jonkun hengen. Voit luovuttaa verta, jos olet terve, 18–70-vuotias ja painat vähintään 50 kiloa. Uuden luovuttajan tulee olla alle 60-vuotias. Ota mukaasi virallinen henkilötodistus. Maksuton infonumero 0800 0 5801. Lisätietoja: veripalvelu.fi ja sovinkoluovuttajaksi.fi\">veripalvelu.fi</a> ja <a href=\"https://sovinkoluovuttajaksi.fi/\">sovinkoluovuttajaksi.fi</a></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:170963/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:179220",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:58548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Maksuton",
                        "sv": "Gratis"
                    },
                    "info_url": {
                        "fi": "https://www.kaupunkitapahtumatespoo.fi/",
                        "sv": "https://www.kaupunkitapahtumatespoo.fi/"
                    },
                    "price": {
                        "fi": "Maksuton",
                        "sv": "Gratis"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 64071,
                    "license": "cc_by",
                    "created_time": "2020-04-14T13:12:09.343598Z",
                    "last_modified_time": "2020-04-14T13:12:09.343621Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{A756DEFC-D241-4C60-8296-C76DF64C228A}/126951",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-15T09:12:18.638009Z",
            "last_modified_time": "2020-05-07T15:11:50.187502Z",
            "date_published": "2020-04-15T07:15:21.370000Z",
            "start_time": "2020-05-10T12:00:00Z",
            "end_time": "2020-05-10T13: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,
            "location_extra_info": {
                "fi": "Espoon kulttuurikeskus",
                "sv": "Esbo kulturcentrum"
            },
            "short_description": {
                "fi": "Kamarimusiikkia kappeleissa -sarja toteutetaan koronaviruksen aiheuttamasta tilanteesta johtuen kahtena striimattuna konserttina.",
                "sv": "På grund av coronavirussituationen förverkligas serien Kammarmusik i kapellen som två strömmade konserter."
            },
            "name": {
                "fi": "Tapiola Sinfonietta LIVE: Kamarimusiikkia kappeleissa 2",
                "sv": "Tapiola Sinfonietta LIVE: Kammarmusik i kapell 2"
            },
            "description": {
                "fi": "<p> </p><p>Kamarimusiikkia kappeleissa -sarja toteutetaan koronaviruksen aiheuttamasta tilanteesta johtuen kahtena striimattuna konserttina.<br>\nEnsimmäinen konsertti lähetetään suoratoistona Perkkaan kappelista lauantaina 9.5.2020 klo 15. Toinen konsertti lähetetään Kauklahden kappelista sunnuntaina 10.5. klo 15.</p> <p>Katso striimatut konsertit Tapiola Sinfoniettan <a href=\"https://www.youtube.com/user/TapiolaSinfonietta/videos\">YouTube-kanavalta</a> tai osoitteesta <a href=\"https://www.kaupunkitapahtumatespoo.fi/\">kotona247.fi</a></p> <p>Kappelien tarjoamat erilaiset esiintymisympäristöt ovat innoittaneet konserttiohjelmien suunnittelussa. Luvassa on sekä harvemmin kuultuja teoksia tunnetuilta säveltäjiltä että tuntemattomampien säveltäjien musiikkia.<br><br>\nOHJELMA 10.5.2020 klo 15<br>\nJohann Sebastian Bach: Vor deinen Thron tret ich hiermit BWV 668 <br>\nAnni Haapaniemi, oboe<br>\nMervi Kinnarinen, viulu<br>\nSusanne Helasvuo, viulu<br>\nJukka Kaukola, sello</p> <p>Grazyna Bacewicz: Duoja kahdelle viululle<br>\nSari Deshayes, viulu<br>\nMarleena Olli, viulu</p> <p>Ludwig van Beethoven: Sekstetto kahdelle käyrätorvelle ja jousikvartetille Es-duuri op. 81 <br>\nTero Toivonen, käyrätorvi<br>\nIlkka Hongisto, käyrätorvi<br>\nLeena Ihamuotila, viulu<br>\nJukka Mertanen, viulu<br>\nPasi Kauppinen, alttoviulu<br>\nJanne Aalto, sello</p> <p>Konsertin juontaa Tapiola Sinfoniettan II konserttimestari Jukka Rantamäki.</p><p>Konsertin kesto on noin 50 minuuttia.</p>",
                "sv": "<p> <br>\nPå grund av coronavirussituationen förverkligas serien Kammarmusik i kapellen som två strömmade konserter.<br>\nDen första konserten sänds direkt från Bergans kapell lördag 9.5.2020 kl. 15. Den andra konserten sänds från Köklax kapell söndag 10.5 kl. 15.</p> <p>Se de strömmade konserterna på Tapiola Sinfoniettas <a href=\"https://www.youtube.com/user/TapiolaSinfonietta/videos\">Youtubekanal</a> eller på adressen <a href=\"https://kotona247.fi/\">kotona247.fi</a>.</p> <p>Kapellens olika utrymmen har inspirerat planeringen av konsertprogrammen. På programmen finns såväl mindre spelade verk av bekanta tonsättare som verk av mer okända kompositörer.</p> <p>PROGRAMMET 10.5.2020 kl. 15</p> <p>Johann Sebastian Bach: Vor deinen Thron tret ich hiermit BWV 668 <br>\nAnni Haapaniemi, oboe<br>\nMervi Kinnarinen, violin<br>\nSusanne Helasvuo, violin<br>\nJukka Kaukola, cello</p> <p>Grazyna Bacewicz: Duos för två violin<br>\nSari Deshayes, violin<br>\nMarleena Olli, violin</p> <p>Ludwig van Beethoven: Sekstett för två valthorn och stråksekstet i Ess-dur op. 81 <br>\nTero Toivonen, valthorn<br>\nIlkka Hongisto, valthorn<br>\nLeena Ihamuotila, violin<br>\nJukka Mertanen, violin<br>\nPasi Kauppinen, viola<br>\nJanne Aalto, cello</p> <p> Jukka Rantamäki, konferencier.</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.tapiolasinfonietta.fi/",
                "sv": "https://www.tapiolasinfonietta.fi/sv/etusivu/"
            },
            "provider": {
                "fi": "Tapiola Sinfonietta",
                "sv": "Tapiola Sinfonietta"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:179220/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:179222",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:58548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://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,
                    "description": {
                        "en": "Free"
                    },
                    "info_url": {
                        "en": "https://www.kaupunkitapahtumatespoo.fi/"
                    },
                    "price": {
                        "en": "Free"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 64071,
                    "license": "cc_by",
                    "created_time": "2020-04-14T13:12:09.343598Z",
                    "last_modified_time": "2020-04-14T13:12:09.343621Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{A756DEFC-D241-4C60-8296-C76DF64C228A}/126951",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-15T08:12:19.185244Z",
            "last_modified_time": "2020-05-07T15:11:50.056284Z",
            "date_published": "2020-04-15T07:18:13.387000Z",
            "start_time": "2020-05-09T12:00:00Z",
            "end_time": "2020-05-09T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "en": "Espoo Cultural Centre"
            },
            "short_description": {
                "en": "In the spring 2020, the Tapiola Sinfonietta chamber music series will be streamed live on 9th and 10th of May at 3 pm."
            },
            "name": {
                "en": "Tapiola Sinfonietta LIVE: Chamber music at chapels 2"
            },
            "description": {
                "en": "<p> <br>\nIn the spring 2020, the Tapiola Sinfonietta chamber music series will be streamed live on 9th and 10th of May at 3 pm.<br>\nMusicians of Tapiola Sinfonietta will perform charming chamber music paired with attractive venues.</p> <p>PROGRAM 10.5.2020 at 3 pm</p> <p>Johann Sebastian Bach: Vor deinen Thron tret ich hiermit BWV 668 <br>\nAnni Haapaniemi, oboe<br>\nMervi Kinnarinen, violin<br>\nSusanne Helasvuo, violin<br>\nJukka Kaukola, cello</p> <p>Grazyna Bacewicz: Duos for two violins<br>\nSari Deshayes, violin<br>\nMarleena Olli, violin</p> <p>Ludwig van Beethoven: Sextet for french horn and string sextet in E flat major op. 81 <br>\nTero Toivonen, horn<br>\nIlkka Hongisto, horn<br>\nLeena Ihamuotila, violin<br>\nJukka Mertanen, violin<br>\nPasi Kauppinen, viola<br>\nJanne Aalto, cello</p> <p>Jukka Rantamäki, host</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "en": "https://www.tapiolasinfonietta.fi/en/etusivu/"
            },
            "provider": {
                "en": "Tapiola Sinfonietta"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:179222/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:179216",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:58548/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": {
                        "fi": "Maksuton",
                        "sv": "Gratis",
                        "en": "Free"
                    },
                    "info_url": {
                        "fi": "https://www.kaupunkitapahtumatespoo.fi/",
                        "sv": "https://www.kaupunkitapahtumatespoo.fi/",
                        "en": "https://www.kaupunkitapahtumatespoo.fi/"
                    },
                    "price": {
                        "fi": "Maksuton",
                        "sv": "Gratis",
                        "en": "Free"
                    }
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 64071,
                    "license": "cc_by",
                    "created_time": "2020-04-14T13:12:09.343598Z",
                    "last_modified_time": "2020-04-14T13:12:09.343621Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{A756DEFC-D241-4C60-8296-C76DF64C228A}/126951",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64071/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-15T09:12:18.394314Z",
            "last_modified_time": "2020-05-07T15:11:49.966165Z",
            "date_published": "2020-04-15T07:07:35.317000Z",
            "start_time": "2020-05-09T12:00:00Z",
            "end_time": "2020-05-09T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Espoon kulttuurikeskus",
                "sv": "Esbo kulturcentrum",
                "en": "Espoo Cultural Centre"
            },
            "short_description": {
                "fi": "Kamarimusiikkia kappeleissa -sarja toteutetaan koronaviruksen aiheuttamasta tilanteesta johtuen kahtena striimattuna konserttina.",
                "sv": "På grund av coronavirussituationen förverkligas serien Kammarmusik i kapellen som två strömmade konserter.",
                "en": "In the spring 2020, the Tapiola Sinfonietta chamber music series will be streamed live on 9th and 10th of May at 3 pm."
            },
            "name": {
                "fi": "Tapiola Sinfonietta LIVE: Kamarimusiikkia kappeleissa 1",
                "sv": "Tapiola Sinfonietta LIVE: Kammarmusik i kapell 1",
                "en": "Tapiola Sinfonietta LIVE: Chamber music at chapels 1"
            },
            "description": {
                "fi": "<p> </p><p>Kamarimusiikkia kappeleissa -sarja toteutetaan koronaviruksen aiheuttamasta tilanteesta johtuen kahtena striimattuna konserttina.<br>\nEnsimmäinen konsertti lähetetään suoratoistona Perkkaan kappelista lauantaina 9.5.2020 klo 15. .Toinen konsertti lähetetään Kauklahden kappelista sunnuntaina 10.5. klo 15.</p><p>Katso striimatut konsertit Tapiola Sinfoniettan <a href=\"https://www.youtube.com/user/TapiolaSinfonietta/videos\">YouTube-kanavalta</a> tai osoitteesta <a href=\"https://www.kaupunkitapahtumatespoo.fi/\">kotona247.fi</a></p><p>Kappelien tarjoamat erilaiset esiintymisympäristöt ovat innoittaneet konserttiohjelmien suunnittelussa. Luvassa on sekä harvemmin kuultuja teoksia tunnetuilta säveltäjiltä että tuntemattomampien säveltäjien musiikkia.</p><p>Ohjelma 9.5.2020 klo 15</p><p>Amy Beach: Kvartetto jousille op. 89<br>\nKati Rantamäki, viulu<br>\nLeena Tuomisto-Saarikoski, viulu<br>\nIlona Rechard, alttoviulu<br>\nRiitta Pesola, sello </p><p>Nancy Dalberg: Arabialaista musiikkia Saharasta<br>\nMarja Talka, oboe<br>\nJussi Tuhkanen, alttoviulu<br>\nAntti Rislakki, lyömäsoittimet </p><p>Gabriella Smith: Children of fire<br>\nMarja Talka, oboe<br>\nOlli Leppäniemi, klarinetti<br>\nTimo Holopainen, viulu<br>\nJanne Saari, alttoviulu<br>\nMatti Tegelman, kontrabasso </p><p>Konsertin juontaa Tapiola Sinfoniettan II konserttimestari Jukka Rantamäki</p><p>Konsertin kesto on noin 50 minuuttia.</p>",
                "sv": "<p> <br>\nPå grund av coronavirussituationen förverkligas serien Kammarmusik i kapellen som två strömmade konserter.<br>\nDen första konserten sänds direkt från Bergans kapell lördag 9.5.2020 kl. 15. Den andra konserten sänds från Köklax kapell söndag 10.5 kl. 15.</p> <p>Se de strömmade konserterna på Tapiola Sinfoniettas <a href=\"https://www.youtube.com/user/TapiolaSinfonietta/videos\">Youtubekanal</a> eller på adressen <a href=\"https://kotona247.fi/\">kotona247.fi</a>.</p> <p>Kapellens olika utrymmen har inspirerat planeringen av konsertprogrammen. På programmen finns såväl mindre spelade verk av bekanta tonsättare som verk av mer okända kompositörer.</p> <p>PROGRAMMET på lördagen den 9. Maj kl. 15</p> <p>Amy Beach: Kvartett för stråkar op. 89<br>\nKati Rantamäki, violin<br>\nLeena Tuomisto-Saarikoski, violin<br>\nIlona Rechard, viola<br>\nRiitta Pesola, cello </p> <p>Nancy Dalberg: Arabisk musik från Sahara<br>\nMarja Talka, oboe<br>\nJussi Tuhkanen, viola<br>\nAntti Rislakki, slagverk</p> <p>Gabriella Smith: Children of fire<br>\nMarja Talka, oboe<br>\nOlli Leppäniemi, klarinet<br>\nTimo Holopainen, violin<br>\nJanne Saari, viola<br>\nMatti Tegelman, kontrabas</p> <p>Jukka Rantamäki, konferencier</p>",
                "en": "<p> <br>\nIn the spring 2020, the Tapiola Sinfonietta chamber music series will be streamed live on 9th and 10th of May at 3 pm. <br>\nMusicians of Tapiola Sinfonietta will perform charming chamber music paired with attractive venues.</p> <p>PROGRAMME, 9.5.2020 at 3 pm </p> <p>Amy Beach: Quartetto for strings op. 89<br>\nKati Rantamäki, violin<br>\nLeena Tuomisto-Saarikoski, violin<br>\nIlona Rechard, viola<br>\nRiitta Pesola, cello </p> <p>Nancy Dalberg: Arabian music from Sahara<br>\nMarja Talka, oboe<br>\nJussi Tuhkanen, viola<br>\nAntti Rislakki, percussion</p> <p>Gabriella Smith: Children of fire<br>\nMarja Talka, oboe<br>\nOlli Leppäniemi, clarinet<br>\nTimo Holopainen, violin<br>\nJanne Saari, viola<br>\nMatti Tegelman, kdoubel bass</p> <p>Jukka Rantamäki, host</p>"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://www.tapiolasinfonietta.fi/",
                "sv": "https://www.tapiolasinfonietta.fi/sv/etusivu/",
                "en": "https://www.tapiolasinfonietta.fi/en/etusivu/"
            },
            "provider": {
                "fi": "Tapiola Sinfonietta",
                "sv": "Tapiola Sinfonietta",
                "en": "Tapiola Sinfonietta"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:179216/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:171442",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/2642427"
                    },
                    "price": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60650,
                    "license": "cc_by",
                    "created_time": "2019-12-02T09:12:19.314264Z",
                    "last_modified_time": "2019-12-02T09:12:19.314282Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{E254EB52-8D13-4F6F-BE43-DD15908A31AA}/121768",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "created_time": "2019-12-02T09:12:19.246571Z",
            "last_modified_time": "2020-05-07T15:11:49.877528Z",
            "date_published": "2019-12-02T08:09:00Z",
            "start_time": "2020-05-09T10:00:00Z",
            "end_time": "2020-05-09T12: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,
            "location_extra_info": {
                "fi": "Sellosali"
            },
            "short_description": {
                "fi": "Pikku Papun Orkesterin konsertit 9.5.2020 siirtyvät 5.12.2020 koronavirustilanteen vuoksi."
            },
            "name": {
                "fi": "Lasten lauantai: Pikku Papun Orkesteri (SIIRTYY 5.12.2020)"
            },
            "description": {
                "fi": "<p> <strong>La 9.5. klo 13 ja 15 </strong> </p> <p> <strong>Huom! Konsertit siirtyvät lauantaille 5.12.2020 koronavirustilanteen vuoksi.</strong> <br> <br> Lippupisteestä ennakkoon ostetut liput käyvät uuteen ajankohtaan sellaisenaan.<br><br> Liput on myös mahdollista palauttaa Lippupisteen ohjeistuksen mukaisesti:<br> Rahanpalautusta voi hakea 30.6.2020 mennessä tästä linkistä: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a><br><br> Liput voi myös palauttaa postitse yhteystietoineen ja tilinumeroineen osoitteeseen:<br> Lippupiste Oy / \"Tapahtuman nimi\" palautus<br> Kalevantie 2 (B-talo)<br> 33100 Tampere<br><br> Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> Palautusten maksamisessa voi olla suuren määrän vuoksi viiveitä.</p> <p>Pahoittelemme tilannetta.</p> <p>--------------------------------------------<br><br><strong>Lasten lauantai 9.5. klo 13 (LOPPUUNMYYTY) ja 15 (LOPPUUNMYYTY)<br> Pikku Papun Orkesteri</strong></p> <p>Pikku Papun Orkesteri saapuu kaikenikäisten kuulijoiden iloksi musisoimaan Sellosaliin! Konsertin lauluissa seikkailee iloinen, pieni kilpikonna Pikku Papu ystävineen. Lauluissa käsitellään ystävyyttä, iloa, kiukkua, ruoanlaittoa, luontoa, toisten kanssa toimeen tulemista – koko elämän kirjoa! Papu-hittien lisäksi konsertissa kuullaan uusia raikkaita sovituksia perinteistä lastenlauluista Mörri-Möykystä Lennä Lennä Leppäkerttuun. Pikku Papun Orkesterin konsertissa perheen pienimmätkin pääsevät mukaan lauluihin ja leikkeihin. Myös riemunkiljahtelu ja tanssiminen on sallittua – jopa toivottavaa!<br><br> Suositellaan yli 3-vuotiaille<br> Kesto 45 min<br><br> Liput 15 € + toimitusmaksu (alk. 1 €) <a href=\"https://www.lippu.fi/eventseries/2642427\">lippu.fi.</a> Perhelippu (sis. 4 henkeä) 52 € + toimitusmaksu (alk. 1 €).</p> <p></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:171442/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:174275",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "en": "https://www.lippu.fi/en/event/sellosali-lasten-lauantai-pikku-papun-orkesteri-sellosali-12648186/"
                    },
                    "price": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60650,
                    "license": "cc_by",
                    "created_time": "2019-12-02T09:12:19.314264Z",
                    "last_modified_time": "2019-12-02T09:12:19.314282Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{E254EB52-8D13-4F6F-BE43-DD15908A31AA}/121768",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2020-02-03T10:13:35.064509Z",
            "last_modified_time": "2020-05-07T15:11:49.807977Z",
            "date_published": "2020-02-03T08:26:00Z",
            "start_time": "2020-05-09T10:00:00Z",
            "end_time": "2020-05-09T10: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,
            "location_extra_info": {
                "en": "Sello Hall"
            },
            "short_description": {
                "en": "The concerts have been moved to Saturday 5.12.2020 due to the corona virus outbreak."
            },
            "name": {
                "en": "Children’s Saturday: Pikku Papu Orchestra (SOLD OUT) (MOVED TO 5.12.2020)"
            },
            "description": {
                "en": "<p> <br> <strong>Sat 9 May at 13:00 (SOLD OUT) and 15:00 (SOLD OUT)</strong> </p> <p> <strong>Note! The concerts have been moved to Friday 4.12.2020 due to the corona virus outbreak.</strong> </p> <p>Group reservations made via Sello Hall are cancelled and need to be reboked once the autumn programme is announced.</p> <p>Tickets purchased via Lippupiste can be used as such for the replacing date.</p> <p>You can also request reimbursement for the price of tickets unused due to cancellation until June 30 2020 from: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p> <p>Tickets can also be returned with contact information and bank account number to the following address:</p> <p>Lippupiste Oy / \"Title of event\" palautus</p> <p>Kalevantie 2 (B-talo)</p> <p>33100 Tampere</p> <p></p> <p>Order- and Delivery costs and service charges are not reimbursed.</p> <p>Due to large amounts of reimbursements the handling times are longer than usual.</p> <p></p> <p>We apologize for the inconvenience</p> <p>-----------------------------------------------<br><br> Pikku Papu Orchestra is coming to Sello Hall to delight listeners of all ages! In addition to established Papu hits, the concert will feature fresh new arrangements of traditional children’s songs from ‘Mörri-Möykky’ to ‘Lennä Lennä Leppäkerttu’. Pikku Papu Orchestra’s concert will also allow for the youngest members of the family to take part in singing and games. Cries of joy and dancing are allowed and welcomed!<br><br> Duration 45 min</p> <p>Tickets €15 + service fee (from €1) <a href=\"https://www.lippu.fi/en/event/sellosali-lasten-lauantai-pikku-papun-orkesteri-sellosali-12648186/\">lippu.fi </a><br> Family ticket (for 4 people) €52 + service fee (from €1).</p> <p></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:174275/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:174277",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p372/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "sv": "https://www.lippu.fi/sv/event/sellosali-lasten-lauantai-pikku-papun-orkesteri-sellosali-12648186/"
                    },
                    "price": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60650,
                    "license": "cc_by",
                    "created_time": "2019-12-02T09:12:19.314264Z",
                    "last_modified_time": "2019-12-02T09:12:19.314282Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{E254EB52-8D13-4F6F-BE43-DD15908A31AA}/121768",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2020-02-03T10:13:34.966729Z",
            "last_modified_time": "2020-05-07T15:11:49.746077Z",
            "date_published": "2020-02-03T08:31:00Z",
            "start_time": "2020-05-09T10:00:00Z",
            "end_time": "2020-05-09T10: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,
            "location_extra_info": {
                "sv": "Sellosalen"
            },
            "short_description": {
                "sv": "Konserterna flyttas till lördag 5.12. på grund av coronavirusepidemin."
            },
            "name": {
                "sv": "Barnens lördag: Pikku Papus orkester (FLYTTAS TILL 5.12.2020)"
            },
            "description": {
                "sv": "<p> <br> <strong>Lör 9.5 kl. 13.00 (SLUTSÅLD)</strong> <strong> och 15.00 (SLUTSÅLD)</strong> <br> <br> <strong>Obs! Konserterna flyttas till lördag 5.12.2020 på grund av coronavirus epidemin.</strong> </p> <p>Biljetter köpta från Lippupiste kan användas som sådana till nya tidpunkten.</p> <p>Du kan även ansöka om återbetalning av biljettpengarna, för dina oanvända biljetter till den annullerade tillställningen fram till 30 juni 2020, på denna sida: <a href=\"https://web.lippu.fi/palautus\">https://web.lippu.fi/palautus</a></p> <p>Biljetter kan även returneras med kontaktinformation och bank nummer till följande adress: <br> Lippupiste Oy / \"Evenemangets namn\" palautus<br> Kalevavägen 2 (B-huset)<br> 33100 Tammerfors</p> <p>Service- och leveransavgifter återbetalas inte.<br> På grund av den mängd av återbetalningar vår behandling tid är längre än vanligt.</p> <p>Vi beklagar situationen</p> <p>--------------------------------------</p> <p> <br> Pikku Papus orkester glädjer åhörare i alla åldrar. Utöver sina hittar spelar orkestern nya fräscha arrangemang av traditionella barnsånger från Mörri-Möykky till Lennä Lennä Leppäkerttu. Också familjens minsta kan delta i sångerna och lekarna. Det är tillåtet och till och med önskvärt att skrika av glädje och dansa.<br><br> Längd 45 min</p> <p>Biljetter 15 euro + expeditionsavgift (från 1 euro), <a href=\"https://www.lippu.fi/sv/event/sellosali-lasten-lauantai-pikku-papun-orkesteri-sellosali-12648186/\">lippu.fi</a><br> Familjebiljett för 4 personer 52 euro + expeditionsavgift (från 1 euro)</p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:174277/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo:171440",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59212/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/2642371"
                    },
                    "price": null
                }
            ],
            "data_source": "espoo",
            "publisher": "espoo:kaupunki",
            "sub_events": [],
            "images": [
                {
                    "id": 60650,
                    "license": "cc_by",
                    "created_time": "2019-12-02T09:12:19.314264Z",
                    "last_modified_time": "2019-12-02T09:12:19.314282Z",
                    "name": "",
                    "url": "https://www.espoo.fi/download/noname/{E254EB52-8D13-4F6F-BE43-DD15908A31AA}/121768",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "espoo",
                    "publisher": "espoo:kaupunki",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/60650/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4363/?format=api"
                }
            ],
            "created_time": "2019-12-02T11:13:08.801322Z",
            "last_modified_time": "2020-05-07T15:11:49.586554Z",
            "date_published": "2019-12-02T08:09:00Z",
            "start_time": "2020-05-08T06:00:00Z",
            "end_time": "2020-05-08T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "location_extra_info": {
                "fi": "Sellosali"
            },
            "short_description": {
                "fi": "Pikku Papun Orkesterin konsertit 8.5.2020 siirtyvät 4.12.2020 koronavirustilanteen vuoksi."
            },
            "name": {
                "fi": "Pikku Papun Orkesteri (SIIRTYY PE 4.12.2020)"
            },
            "description": {
                "fi": "<p> <strong>Pe 8.5. klo 9.00 ja 10.15 </strong> </p> <p> <strong>Huom! Konsertit siirtyvät perjantaille 4.12.2020 koronavirustilanteen vuoksi.</strong> <br> <br> Lippupisteestä ennakkoon ostetut liput käyvät uuteen ajankohtaan sellaisenaan.<br><br> Sellosaliin puhelimitse ja sähköpostitse tehdyt ryhmävaraukset peruuntuvat eivätkä siirry automaattisesti uuteen ajankohtaan. Ne tulevat uudelleen varattaviksi, kun Sellosalin syyskauden ohjelmisto julkaistaan.</p> <p>Liput on myös mahdollista palauttaa Lippupisteen ohjeistuksen mukaisesti:<br> Rahanpalautusta voi hakea 30.6.2020 mennessä tästä linkistä: https://web.lippu.fi/palautus<br><br> Liput voi myös palauttaa postitse yhteystietoineen ja tilinumeroineen osoitteeseen:<br> Lippupiste Oy / \"Tapahtuman nimi\" palautus<br> Kalevantie 2 (B-talo)<br> 33100 Tampere<br><br> Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> Palautusten maksamisessa voi olla suuren määrän vuoksi viiveitä.</p> <p>Pahoittelemme tilannetta.</p> <p>------------------------------------------------<br><br><strong>Pe 8.5. klo 9.00 (LOPPUUNMYYTY) ja klo 10.15 (LOPPUUNMYYTY)<br> Pikku Papun Orkesteri</strong></p> <p>Pikku Papun Orkesteri saapuu kaikenikäisten kuulijoiden iloksi musisoimaan Sellosaliin! Konsertin lauluissa seikkailee iloinen, pieni kilpikonna Pikku Papu ystävineen. Lauluissa käsitellään ystävyyttä, iloa, kiukkua, ruoanlaittoa, luontoa, toisten kanssa toimeen tulemista – koko elämän kirjoa! Papu-hittien lisäksi konsertissa kuullaan uusia raikkaita sovituksia perinteistä lastenlauluista Mörri-Möykystä Lennä Lennä Leppäkerttuun. Pikku Papun Orkesterin konsertissa perheen pienimmätkin pääsevät mukaan lauluihin ja leikkeihin. Myös riemunkiljahtelu ja tanssiminen on sallittua – jopa toivottavaa!<br><br> Suositellaan yli 3-vuotiaille<br> Kesto 45 min<br><br> Liput 6 € + toimitusmaksu (alk. 1 €) <a href=\"https://www.lippu.fi/eventseries/2642371\">lippu.fi.</a><br> Ryhmäliput (yli 10 hnk) á 6 €, sellosali@espoo.fi tai puh. 050 494 6833 arkisin klo 15–17</p> <p></p>"
            },
            "provider_contact_info": null,
            "info_url": null,
            "provider": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/espoo:171440/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}