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

{
    "meta": {
        "count": 143494,
        "next": "http://api.hel.fi/linkedevents/v1/event/?format=api&last_modified_since=2020-04-07&page=7119&show_deleted=True",
        "previous": "http://api.hel.fi/linkedevents/v1/event/?format=api&last_modified_since=2020-04-07&page=7117&show_deleted=True"
    },
    "data": [
        {
            "id": "helmet:210345",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64221,
                    "license": "cc_by",
                    "created_time": "2020-04-30T18:15:08.673878Z",
                    "last_modified_time": "2020-04-30T18:15:08.673896Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{9B15343B-077A-4A54-B108-FC2564E8264D}/82511",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64221/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2020-04-30T18:15:08.604627Z",
            "last_modified_time": "2020-05-15T05:14:24.928154Z",
            "date_published": "2020-04-30T16:10:00Z",
            "start_time": "2020-05-15T10:00:00Z",
            "end_time": "2020-05-15T10: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": true,
            "replaced_by": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Helsinki-kanava"
            },
            "provider": null,
            "description": {
                "fi": "<p> <strong>Miten toinen albumi syntyy? Minkälainen biisinkirjoituspaikka kirjasto on? </strong> <br> <br> Helsingin kaupunginkirjaston etätapahtumassa esiintyy räppäri<strong> F</strong> eli <strong>Fanni Sjöholm</strong>. F esittää muutaman biisin vastailmestyneeltä toiselta levyltään yhdessä tuottajansa kanssa. Keikan lisäksi striimissä on luvassa haastattelu, jossa kirjastonhoitaja <strong>Heini Strand</strong> jututtaa F:ää tuoreesta albumista, keikkailusta, kirjastosta ja kaikesta muusta. <br> <br> Facebook: <a href=\"https://www.facebook.com/fvirallinen\">https://www.facebook.com/fvirallinen</a><br> Instagram: <a href=\"https://www.instagram.com/f_virallinen\">https://www.instagram.com/f_virallinen</a></p><p>Tapahtuma on katsottavissa livenä helsinkikanava.fi -sivulla <strong>perjantaina 15.5. klo 13. </strong><br> Tallenteen voi myöhemmin katsoa samalta sivulta: <strong><a href=\"https://www.helsinkikanava.fi\">https://www.helsinkikanava.fi</a> </strong><br><br> Koko tuleva ohjelmisto: <a href=\"http://helmet.fi/kirjastohelsinkilive\">http://helmet.fi/kirjastohelsinkilive</a><br> Menneiden tapahtumien taltioinnit: <a href=\"https://www.helsinkikanava.fi/fi_FI/web/helsinkikanava/folder?groupItemId=39419587\">https://www.helsinkikanava.fi/fi_FI/web/helsinkikanava/folder?groupItemId=39419587</a></p><p> <br> <em>kuva: Juho Länsiharju</em> </p><p>***<br><br> Kirjastojen ollessa suljettuina, Helsingin kaupunginkirjasto tuottaa kirjallisuuteen liittyviä, hyödyllisiä ja hauskoja sisältöjä helsinkikanavalle.</p><p> <em> <a href=\"https://www.helsinkikanava.fi/fi_FI/info\">https://www.helsinkikanava.fi/fi_FI/info </a> </em> </p><p> <em>Helsinki-kanava tarjoaa verkkolähetyksiä ja julkaisee tallenteita muun muassa Helsingin kaupunginvaltuuston kokouksista, Helsingin kaupunginorkesterin konserteista ja Pormestarin asukasilloista. Kanavalla julkaistaan myös kaupunkilaisten omia \"Kaupunkilaisten videot\"-videoita</em>.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Etätapahtuma - räppäri F: haastattelu & keikka"
            },
            "short_description": {
                "fi": "Helsingin kaupunginkirjaston etätapahtumassa esiintyy räppäri F eli Fanni Sjöholm. Keikan lisäksi striimissä on luvassa haastattelu, jossa kirjastonhoitaja Heini Strand jututtaa F:ää tuoreesta albumista, keikkailusta, kirjastosta ja kaikesta muusta."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:210345/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:210572",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11688/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11777/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64339,
                    "license": "cc_by",
                    "created_time": "2020-05-14T16:14:27.361892Z",
                    "last_modified_time": "2020-05-14T16:14:27.361911Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{09E68194-1007-4C2F-90E4-D1DC69D2077E}/82641",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2020-05-14T16:14:27.288386Z",
            "last_modified_time": "2020-05-14T16:14:27.408233Z",
            "date_published": "2020-05-14T15:40:00Z",
            "start_time": "2020-05-28T08:00:00Z",
            "end_time": "2020-05-28T08:20: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": true,
            "replaced_by": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Helsinki-kanava"
            },
            "provider": null,
            "description": {
                "fi": "<p> <strong>Virossa vietetään Jaan Kross 100-juhlavuotta. Jaan Krossin vaimon Ellen Niitin lastenkirjat ovat tuttuja myös Suomessa.</strong> <br> <br> Pille-Riin on viisivuotias tyttö, joka elää turvallisessa maailmassa 1960-luvulla, jolloin kaikki ei ollut ihan samanlaista kuin nykyisin. Silti on Pille-Riin tyttö, jolle sattuu ja tapahtuu kaikenlaista jännittävää, josta voimme oppia jotakin.<br><br> ​Kirjastovirkailija-satutäti <strong>Elo Lammi</strong> lukee kahdella kielellä tarinan Ellen Niitin teoksesta <strong>Pille-Riinin tarinat</strong> (WSOY 1967) <strong>Pille-Riini lood</strong> (1963). </p><p> <br> Tapahtuma on katsottavissa <strong>livenä helsinkikanava.fi -sivulla torstaina 28.5.2020 klo 11</strong> . Tallenteen voi myöhemmin katsoa samalta sivulta: <strong> <a href=\"https://www.helsinkikanava.fi\">https://www.helsinkikanava.fi</a> </strong> </p><p>Koko tuleva ohjelmisto: <a href=\"http://helmet.fi/kirjastohelsinkilive\">http://helmet.fi/kirjastohelsinkilive</a><br> Menneiden tapahtumien taltioinnit: <br><a href=\"https://www.helsinkikanava.fi/fi_FI/web/helsinkikanava/folder?groupItemId=39419587\">https://www.helsinkikanava.fi/fi_FI/web/helsinkikanava/folder?groupItemId=39419587</a></p><p> <br> </p><p>***<br> </p><p>Helsingin kaupunginkirjasto tuottaa kirjallisuuteen liittyviä, hyödyllisiä ja hauskoja sisältöjä helsinkikanavalle.<br><br><em><a href=\"https://www.helsinkikanava.fi/fi_FI/info\">https://www.helsinkikanava.fi/fi_FI/info</a><br><br> Helsinki-kanava tarjoaa verkkolähetyksiä ja julkaisee tallenteita muun muassa Helsingin kaupunginvaltuuston kokouksista, Helsingin kaupunginorkesterin konserteista ja Pormestarin asukasilloista. Kanavalla julkaistaan myös kaupunkilaisten omia \"Kaupunkilaisten videot\"-videoita.</em></p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Etätapahtuma - kaksikielinen satutuokio: Pille-Riinin tarinoita (suomeksi ja viroksi)"
            },
            "short_description": {
                "fi": "​Kirjastovirkailija-satutäti Elo Lammi lukee kahdella kielellä tarinan Ellen Niitin teoksesta Pille-Riinin tarinat (WSOY 1967) Pille-Riini lood (1963). Lue lisää..."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:210572/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:210571",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10674/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10675/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64337,
                    "license": "cc_by",
                    "created_time": "2020-05-14T16:14:26.490266Z",
                    "last_modified_time": "2020-05-14T16:14:26.490287Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{64C41AE8-E3EB-492E-95E7-3909EB30BF0F}/82639",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/?format=api"
                }
            ],
            "created_time": "2020-05-14T16:14:26.334719Z",
            "last_modified_time": "2020-05-14T16:14:26.545168Z",
            "date_published": "2020-05-14T15:30:00Z",
            "start_time": "2020-05-18T10:00:00Z",
            "end_time": "2020-05-18T10: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": true,
            "replaced_by": null,
            "info_url": null,
            "location_extra_info": {
                "fi": "Helsinki-kanava"
            },
            "provider": null,
            "description": {
                "fi": "<p> <strong>Missä elokuvassa osataan lentää? Entä missä elokuvassa ollaan kirjastossa?</strong> <br> <br> Kino Reginan ollessa suljettuna Kansallisen audiovisuaalisen instituutin (KAVI) viestintäsuunnittelija <strong>Vilma Hakala</strong> ja suunnittelija <strong>Katri Tenhola</strong> antavat vinkkejä <strong><a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Uutispalat/Helmetelokuvahaaste_2020(202111)\">Helmet-elokuvahaasteeseen</a></strong> esittelemällä elokuvia, jotka ovat ilmaiseksi katsottavissa KAVIn verkkopalvelussa Elonetissä. Luvassa myös uutisia Kino Reginan avautumisesta.</p><p>Tapahtuma on katsottavissa <strong>livenä helsinkikanava.fi -sivulla maanantaina 18.5. klo 13</strong>. Tallenteen voi myöhemmin katsoa samalta sivulta: <a href=\"https://www.helsinkikanava.fi\"><strong>https://www.helsinkikanava.fi</strong></a></p><p>Koko tuleva ohjelmisto: <a href=\"http://helmet.fi/kirjastohelsinkilive\">http://helmet.fi/kirjastohelsinkilive</a><br> Menneiden tapahtumien taltioinnit: <br><a href=\"https://www.helsinkikanava.fi/fi_FI/web/helsinkikanava/folder?groupItemId=39419587\">https://www.helsinkikanava.fi/fi_FI/web/helsinkikanava/folder?groupItemId=39419587</a></p><p> <br> <a href=\"https://kavi.fi/kansallinen-audiovisuaalinen-instituutti-palvelee\"> <strong>https://kavi.fi/kansallinen-audiovisuaalinen-instituutti-palvelee</strong> </a> </p><p> <strong> <a href=\"https://elonet.finna.fi\">https://elonet.finna.fi</a> </strong> </p><p> <strong> <a href=\"https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Uutispalat/Helmetelokuvahaaste_2020(202111)\" title=\"https://www.helmet.fi/fi-fi/tapahtumat_ja_vinkit/uutispalat/helmetelokuvahaaste_2020(202111)\">https://www.helmet.fi/fi-FI/Tapahtumat_ja_vinkit/Uutispalat/Helmetelokuvahaaste_2020(202111)</a> </strong> </p><p>***</p><p> <br> Helsingin kaupunginkirjasto tuottaa kirjallisuuteen liittyviä, hyödyllisiä ja hauskoja sisältöjä helsinkikanavalle.</p><p> <em> <a href=\"https://www.helsinkikanava.fi/fi_FI/info\">https://www.helsinkikanava.fi/fi_FI/info </a> </em> </p><p> <em>Helsinki-kanava tarjoaa verkkolähetyksiä ja julkaisee tallenteita muun muassa Helsingin kaupunginvaltuuston kokouksista, Helsingin kaupunginorkesterin konserteista ja Pormestarin asukasilloista. Kanavalla julkaistaan myös kaupunkilaisten omia \"Kaupunkilaisten videot\"-videoita</em>.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Etätapahtuma - Elonetistä elokuvahaasteeseen"
            },
            "short_description": {
                "fi": "Viestintäsuunnittelija Vilma Hakala ja suunnittelija Katri Tenhola antavat vinkkejä Helmet-elokuvahaasteeseen esittelemällä elokuvia, jotka ovat ilmaiseksi katsottavissa KAVIn verkkopalvelussa Elonetissä. Lue lisää..."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:210571/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51440",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:751/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 64304,
                    "license": "event_only",
                    "created_time": "2020-05-12T16:13:33.031670Z",
                    "last_modified_time": "2020-05-12T16:13:33.031690Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_670902.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64304/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-05-12T16:13:32.878716Z",
            "last_modified_time": "2020-05-14T16:13:28.211454Z",
            "date_published": null,
            "start_time": "2020-05-20T15:50:00Z",
            "end_time": "2020-05-20T17: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": true,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/61AEE1E35978D672FC5293869FC28CB6/Love_Around_The_World_Falling_in_love_",
                "sv": "http://www.caisa.fi/sv/evenemangen/event/61AEE1E35978D672FC5293869FC28CB6/Love_Around_The_World_Falling_in_love_",
                "en": "http://www.caisa.fi/en/events/event/61AEE1E35978D672FC5293869FC28CB6/Love_Around_The_World_Falling_in_love_"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Uudenlainen tarinateatteriesitys yhdistelee tarinaan runoja, laulua ja liikettä. Nyt voit nähdä esityksen livestriimauksena ja suorana lähetyksenä Helsinki-kanavalla ja Caisan Facebook-sivulla. Maksuton!</p><p>Love Around The World (rakkautta maailman ympäri) on rakkaudesta ja sen sivuvaikutuksista kertova esityssarja, jonka ensimmäinen osa on Falling (in love).</p><p>JFK Playback Duo on kehittänyt uudenlaisen tarinateatterikonseptin. Se esittää tarinoita eri lajityypeissä yhdistellen runoja, lauluja ja liikettä. Duo kutsuu yleisön tutustumaan tarinoihin, jotka muuttavat meitä, kaappaavat ajatuksemme, pakottavat meidät liikkumaan tai jatkamaan, tai tarinoihin, jotka ovat helppoja ja yksinkertaisia, muistuttavat meitä lapsuudesta ja toiveistamme ja fantasioistamme.</p><p>Falling (in love) -esitys kysyy: Milloin viimeksi rakastuit? Mihin kaikkeen voikaan rakastua? Kuinka rakkaus loppuu? Falling (in love) kertoo tarinoita, joissa rakastutaan pitelemättömästi.</p><p>Duon muodostavat pitkäaikaiset tarinateatterin ammattilaiset Jori Pitkänen ja Katinka Czigány.</p><p>Esitys on englanninkielinen ja ikäsuositus 16+<br>--------------------------------------------------------------</p><p>The performing group / työryhmä:<br>Käsikirjoitus, ohjaus, näytteleminen / Script, direction, acting: Jori Pitkänen and Katinka Czigány<br>Chattimestari / Chatmaster : Eveliina Heinonen<br>Kesto noin 1h 30min</p><p>HUOM. SARJAN TOINEN OSA NÄHDÄÄN 16.6.2020.</p>",
                "sv": "<p>Love Around The World är en serie uppträdanden om kärleken och dess biverkningar. När föll du senast för någon? Vad allt kan man förälska sig i? Hur slutar man älska? Titta på online föreställingen på Helsinki-kanava. Utan betalning!</p><p>JFK Playback Duo bjuder in publiken att ta del av berättelser som transformerar oss, kapar våra tankar, tvingar oss att röra oss runt eller vidare eller som, helt sonika, påminner oss om vår barndom, våra önskningar och fantasier. JFK Playback Duo har utvecklat ett nytt, speciellt koncept för playbackteater, och har i många länder uppfört och delat sin passion för och kärlek till berättelser. Dessa är de första öppna uppträdandena i Finland.</p><p><b>Falling (in love)</b><br>När föll du senast för någon? Vad allt kan man förälska sig i? Hur slutar man älska? Ett uppförande av berättelser om att falla handlöst.</p><p>JFK Playback Duo uppstod som svar på ett behov – paret Jori Pitkänen och Katinka Czigány skulle fira en icke-materiell jul och hade ingen julklapp. Eftersom bägge var proffs och långvariga utövare av playbackteater, beslutade de sig för att ge teaterformen en ny skepnad: en duo som spelar upp berättelser ur olika genrer blandat med dikter, sånger och rörelse. Det första uppträdandet blev en enorm succé och gav vidare inspiration, och de beslutade sig för att fortsätta resan med Duo Playback Theatre tillsammans. Att de själva var ett par gjorde det hela ännu härligare (och praktiskt enklare).</p><p>Språk: engelska</p><p>The performing group / työryhmä:<br>Käsikirjoitus, ohjaus, näytteleminen / Script, direction, acting: Jori Pitkänen and Katinka Czigány<br>Chattimestari / Chatmaster : Eveliina Heinonen</p>",
                "en": "<p>Love Around The World is a series of performances about love and its side effects. When did you last fall in love? What all can you fall in love with? How do you fall out of love? Look at this online perfromance on Helsinki-kanava.</p><p>The JFK Playback Duo invites the audience to discover stories that change us, hijack our mind, force us to move or move on, or just smooth and simple, remind us to childhood, our wishes and fantasies. It uses the life and relationship of the performing duo as material to bring out stories from the audience and improvise them on stage.</p><p>When did you last fall in love? What all can you fall in love with? How do you fall out of love? This performance is about stories about falling without brakes. The stories that will be seen have been gathered online from people around the world, but the form in which they are played back is chosen during the performance and they are improvised on the spot.</p><p>JFK Playback Duo has developed this special concept of Playback Theatre, performed and shared their passion and love for stories in various countries, and these are the first open performances in Finland. This is also their first concept for a streamed Playback Theatre (Tarinateatteri) show.</p><p><b>JFK</b><br>JFK Playback Duo was born to a need - the couple Jori Pitkänen and Katinka Czigány had an immaterial Christmas coming up and they had no present. Being both professional, long-time Playback Theatre practitioners they decided to create a new form of Playback Theatre - a duo, playing back stories in different genres, poems, songs and movement. The first performance was a huge success and inspiration, and they decided to continue the journey of doing Duo Playback Theatre together. Being a couple made it all the sweeter (and more practical).</p><p>The performing group / työryhmä:<br>Käsikirjoitus, ohjaus, näytteleminen / Script, direction, acting: Jori Pitkänen and Katinka Czigány<br>Chattimestari / Chatmaster : Eveliina Heinonen</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Love Around The World: Falling (in love) – Esitys verkossa | JFK Playback Duo | Virtuaalinen Caisa",
                "sv": "Love Around The World: Falling (in love) – En spelning på webben | JFK Playback Duo | Virtuella Caisa",
                "en": "Love Around The World: Falling (in love) – A performance on web | JFK Playback Duo | Virtual Caisa"
            },
            "short_description": {
                "fi": "Uudenlainen tarinateatteriesitys yhdistelee tarinaan runoja, laulua ja liikettä. Nyt voit nähdä esityksen livestriimauksena ja suorana lähetyksenä Helsinki-kanavalla ja Caisan Facebook-sivulla. Maksuton!",
                "sv": "Love Around The World är en serie uppträdanden om kärleken och dess biverkningar. När föll du senast för någon? Vad allt kan man förälska sig i? Hur slutar man älska? Titta på online föreställingen på Helsinki-kanava. Utan betalning!",
                "en": "Love Around The World is a series of performances about love and its side effects. When did you last fall in love? What all can you fall in love with? How do you fall out of love? Look at this online perfromance on Helsinki-kanava."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51440/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:210569",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:51342/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11193/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64335,
                    "license": "cc_by",
                    "created_time": "2020-05-14T14:14:49.082247Z",
                    "last_modified_time": "2020-05-14T14:14:49.082268Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{A2E14F2B-0511-418D-885D-A90C0F3CF4B2}/82635",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64335/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/sv/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-05-14T14:14:49.022470Z",
            "last_modified_time": "2020-05-14T14:14:49.137898Z",
            "date_published": "2020-05-14T13:24:00Z",
            "start_time": "2020-05-19T13:00:00Z",
            "end_time": "2020-05-19T14: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": true,
            "replaced_by": null,
            "info_url": null,
            "location_extra_info": {
                "sv": "Helsinkikanava.fi"
            },
            "provider": null,
            "description": {
                "sv": "<p>Balansgången mellan tradition och innovation är ett evighetstema inom konstkritiken: Hur kan man förhålla sig till nyskapande om man skriver om något som utgår från en tradition? Är inte traditioner ofta ett pärlband av kreativitet och innovationer? Låter vi genreetiketter påverka vårt tänkande? </p><p>Evenemangets föreläsare <strong>Tove Djupsjöbacka</strong> är musik- och danskritiker, men också själv verksam som musiker och dansare. Som kritiker har hon framför allt koncentrerat sig på konstarter med starka rötter i traditionens jordmån, som nutida folkmusik, världsmusik och flamenco, och skriver regelbundet för Hufvudstadsbladet samt en rad branschtidningar.</p><p>Föreläsningen produceras på Centrumbiblioteket Ode i samarbete med <a href=\"https://frilanskritiker.com/\">Intresseföreningen för Finlandssvenska Frilanskritiker</a> och går att se live på <a href=\"http://helsinkikanava.fi\">Helsinkikanava.fi</a> på tisdagen den 19.5 kl. 16. Efteråt kommer en videoinspelning av föredraget att finnas tillgänglig på samma webbsida. </p>"
            },
            "provider_contact_info": null,
            "name": {
                "sv": "Distansföreläsning om konstkritik: Tradition och innovation"
            },
            "short_description": {
                "sv": "Evenemangets föreläsare Tove Djupsjöbacka är musik- och danskritiker, men också själv verksam som musiker och dansare. Som kritiker har hon framför allt koncentrerat sig på konstarter med starka rötter i traditionens jordmån, som nutida folkmusik, världsmusik och flamenco."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:210569/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:51301",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kreivitaer-mariza-operetti-savoy-teatteri-11239110/",
                        "sv": "https://www.lippu.fi/event/kreivitaer-mariza-operetti-savoy-teatteri-11239110/",
                        "en": "https://www.lippu.fi/event/kreivitaer-mariza-operetti-savoy-teatteri-11239110/"
                    },
                    "price": {
                        "fi": "44,50 €",
                        "sv": "44,50 €",
                        "en": "44,50 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 64048,
                    "license": "event_only",
                    "created_time": "2020-04-06T10:17:38.516595Z",
                    "last_modified_time": "2020-04-06T10:17:38.516615Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_669538.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64048/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-04-06T10:17:38.461254Z",
            "last_modified_time": "2020-05-14T13:13:47.445875Z",
            "date_published": null,
            "start_time": "2020-08-29T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/14DC3A9E1F5ED5B95398BBC38DB6740F/Kreivitar_Mariza_-operetti",
                "sv": "http://www.savoyteatteri.fi/sv/evenemangen/event/14DC3A9E1F5ED5B95398BBC38DB6740F/Operett_Grevinnan_Mariza",
                "en": "http://www.savoyteatteri.fi/en/events/event/14DC3A9E1F5ED5B95398BBC38DB6740F/Operetta_Countess_Mariza"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "OperArt Oy",
                "sv": "OperArt Oy",
                "en": "OperArt Oy"
            },
            "description": {
                "fi": "<p>Alun perin lauantaille 4.4.2020 klo 14 suunniteltu Kreivitär Mariza -operetti siirtyy koronavirustilanteen vuoksi vielä kerran (alun perin korvaavan esityksen piti olla ensin ti 2.6. ja sitten la 29.8.). Uusi esitysajankohta on sunnuntai 17.1.2021 klo 14.</p><p>Mikäli uusi tapahtumapäivä ei sovi asiakkaalle, voi liput palauttaa pe 31.7.2020 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelumaksua.</p><p>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/</p><p>Liput voi myös palauttaa postitse.<br>Asiakkaat saavat lipun hinnan takaisin palauttamalla lipun yhteystietoineen ja tilinumeroineen postitse Lippupisteelle osoitteeseen:</p><p>Lippupiste Oy / ”Tapahtuman nimi” palautus<br>Kalevantie 2 (B-talo)<br>33100 Tampere</p><p>Ostetuista lipuista hyvitetään lipunhinta.</p><p>Palautusten maksamisessa voi olla suuren määrän vuoksi viiveitä.</p><p>**********</p><p>Emmerich Kálmánin operetti</p><p>Wieniläisoperettien parhaimmistoon kuuluva Kreivitär Mariza on taidokkaasti sävelletty teos, jonka tarina tempaa katsojan mukaansa.</p><p>Luvassa on valekihlauksia, salanimiä sekä juonimista niin rahan kuin vallankin tähden. Operetin aarioihin lukeutuu yksi operettimusiikin tunnetuimmista kappaleista ”Czardaskavaljeeri”, joka valloittaa yleisön kerta toisensa jälkeen.</p><p>Rooleissa mm.:<br>Hannakaisa Nyrönen, Jyrki Anttila, Emilia Vesalainen-Pellas, Tiina Vahevaara</p><p>Mukana myös:<br>Lohjan Operettikuoro ja Salonkiorkesteri Operetta</p><p>Ohjaus: Anu Hälvä<br>Lavastus: Jari Jalonen</p><p>Kesto noin 2 h 30 min, sisältää väliajan</p>",
                "sv": "<p>Emmerich Kálmáns operett Grevinnan Mariza</p><p>”En gång var också jag en czardaskavaljer…”</p><p>Grevinnan Maritza tillhör de bästa av Wiens operetter och är ett skickligt komponerat verk vars berättelse griper tag i åskådaren.</p><p>Den bjuder på falska förlovningar, hemliga namn och intriger för pengar och makt. Operettens arior inkluderar ett av operettmusikens mest kända stycken “Czardaskavaljeeri (Czardaskavaljer)” som erövrar publiken gång efter gång.</p><p>I rollerna bl.a.:<br>Hannakaisa Nyrönen, Jyrki Anttila, Emilia Vesalainen-Pellas, Tiina Vahevaara</p><p>Medverkar gör också:<br>Lojo Operettkör och Salonkiorkesteri Operetta</p><p>Regi: Anu Hälvä<br>Scenografi: Jari Jalonen</p><p>Längd ca 2 h 30 min, inkl. paus</p><p>*********</p><p>Datumet till Operett Grevinnan Mariza 4.4.2020 kl 14 har flyttats på grund av koronavirusepidemin. Det nya datumet är 29.8.2020 kl 14. Redan köpta biljetterna är giltiga till den nya konserten och behövs inte bytas.</p>",
                "en": "<p>Emmerich Kálmán’s operetta Countess Mariza</p><p>”They used to call me prince...…”</p><p>Countess Mariza is among the best Viennese operettas, a skilfully composed piece with a story that captivates the audience.</p><p>The story includes are fake engagements, pseudonyms, and plotting for both money and power. One of the most famous songs from the operetta is Play Gypsy, an aria that captivates the audience time after time.</p><p>Performers include:<br>Hannakaisa Nyrönen, Jyrki Anttila, Emilia Vesalainen-Pellas, Tiina Vahevaara</p><p>Also performing:<br>Lohja Operetta Choir and Salonkiorkesteri Operetta</p><p>Director: Anu Hälvä<br>Stage design: Jari Jalonen</p><p>Duration approx. 2 h 30 min, incl. intermission</p><p>*********</p><p>Due to corona virus situation, Operetta Countess Mariza was rescheduled from Sat April 4th 2020 to Sat August 29th 2020 at 2 pm. The tickets that have already been purchased will be valid for the new event date as they are.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Kreivitär Mariza -operetti – OPERETTI SIIRTYY -> su 17.1.2021",
                "sv": "Operett Grevinnan Mariza – OPERETT FLYTTAS -> sö 17.1.2021",
                "en": "Operetta Countess Mariza – OPERETTA RESCHEDULED -> Sun 17.1.2021"
            },
            "short_description": null,
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:51301/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afvuuq3m6y",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:59857/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11693/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2315/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "info_url": {
                        "fi": "http://www.lippu.fi",
                        "en": "http://www.lippu.fi"
                    },
                    "price": {
                        "fi": "alk. 39€",
                        "en": "starting from 39€"
                    },
                    "description": {
                        "fi": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2019-06-12T05:57:41.245571Z",
            "last_modified_time": "2020-05-14T12:40:26.662833Z",
            "date_published": null,
            "start_time": "2020-04-16T21:01:00Z",
            "end_time": "2020-05-30T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": true,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.lippu.fi/lippuja.html?affiliate=ADV&doc=erdetaila&fun=erdetail&action=tickets&erid=1276029&includeOnlybookable=false&index_ytix=20&jumpIn=yTix&scrollToAnchor=ticketTable",
                "en": "https://www.lippu.fi/lippuja.html?affiliate=ADV&doc=erdetaila&fun=erdetail&action=tickets&erid=1276029&includeOnlybookable=false&index_ytix=20&jumpIn=yTix&scrollToAnchor=ticketTable"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "ACE-Production",
                "en": "ACE-Production"
            },
            "description": {
                "fi": "<p>Yksi maailman rakastetuimmista ja menestyneimmistä musikaaleista We Will Rock You saa suomenkielisen ensi-iltansa Messukeskuksessa ensi huhtikuussa. </p><p>Messukeskus Amfi -teatterin lavalla tullaan näkemään unohtumaton ilotulitus huikeaa live-musiikkia, henkeäsalpaavia tanssiesityksiä ja hillitöntä rockasennetta.<br> <br>We Will Rock You -musikaalin valloittava tarina sijoittuu tulevaisuuteen, jossa maapallo on ilkeän Killer Queenin (Laura Voutilainen) hallinnassa. Yksinvaltias on kieltänyt live-musiikin esittämisen ja mikä pahinta, rock-musiikki on kadonnut kokonaan. GaGa-sukupolvi kuuntelee lamaantuneena samaa musiikkia, katsoo samoja elokuvia, käyttää samanlaisia vaatteita ja ajattelee täysin samalla tavalla. </p><p>Joukossa on kuitenkin muutamia, jotka eivät halua sulautua massaan. Valtavirtaa vastaan urheasti uivat Galileo (Mikael Saari) ja Scaramouche (Saara Aalto) taistelevat vapaan ajattelun sekä muodin ja erityisesti vapaan musiikin puolesta.  </p><p>We Will Rock You on hersyvällä huumorilla kuorrutettu vauhdikas musikaali kaipuusta elää täysillä. </p><p>Musikaalissa kuullaan legendaarisen rock-yhtye Queenin suosituimpia kappaleita, kuten I Want to Break Free, Under Pressure, Bohemian Rhapsody ja Another One Bites the Dust – suomeksi sovitettuina. </p><p>Mukaansatempaavan musikaalin päärooleissa hurmaavat Saara Aalto, Laura Voutilainen, Jussu Pöyhönen, Mikael Saari, Matti Leino, Jennie Storbacka ja Lauri Mikkola. </p><p>Suurmusikaalin ohjaa lukuisista elokuva- ja televisiorooleistaan sekä ohjauksistaan tunnettu Maria Sid.</p><p>Messukeskus, Amfi-teatteri  <br>17.4.-30.5.</p><p>Liput alkaen 39€ Lippupisteestä</p>",
                "en": "<p>We Will Rock You musical will have its Finnish spoken premiere in Messukeskus Amfi Theatre next April.</p><p>The main role as Scaramouche will be played by Saara Aalto.</p><p>The musical presents The Queen's iconic music, e.g. I Want to Break Free, Under Pressure, Bohemian Rhapsody and Another One Bites the Dust - all sung in Finnish.</p><p>Messukeskus, Amfi Theatre<br>17.4.-30.5.</p><p>Tickets starting from 39€ from Lippupiste.</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Peruutettu: We Will Rock You",
                "en": "Cancelled: We Will Rock You"
            },
            "short_description": {
                "fi": "Yksi maailman rakastetuimmista ja menestyneimmistä musikaaleista We Will Rock You saa suomenkielisen ensi-iltansa Messukeskuksessa ensi huhtikuussa.",
                "en": "We Will Rock You musical will have its Finnish spoken premiere in Messukeskus Amfi Theatre next April."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afvuuq3m6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helmet:210492",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11686/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11699/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11996/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helmet",
            "publisher": "ahjo:u4804001010",
            "sub_events": [],
            "images": [
                {
                    "id": 64312,
                    "license": "cc_by",
                    "created_time": "2020-05-13T11:14:43.351403Z",
                    "last_modified_time": "2020-05-13T11:14:43.351435Z",
                    "name": "",
                    "url": "https://www.helmet.fi/download/noname/{15D5BF57-4435-4840-8E7E-2CB0EFF728A8}/82622",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "helmet",
                    "publisher": "ahjo:u4804001010",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64312/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/en/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2020-05-13T11:14:43.273372Z",
            "last_modified_time": "2020-05-14T12:13:48.061888Z",
            "date_published": "2020-05-13T10:23:00Z",
            "start_time": "2020-05-14T15:00:00Z",
            "end_time": "2020-05-14T16:10: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,
            "info_url": null,
            "location_extra_info": {
                "fi": "Facebook",
                "en": "Facebook"
            },
            "provider": null,
            "description": {
                "fi": "<h3>Torstaina 14.5. klo 18-19.10</h3><p> <br> Tervetuloa Zoom-livetunnille opettelemaan bulgarialainen kuorolaulu!<br><br> Tunti on torstaina 14.5. klo 18.<br><br> Tunnilla opettavat muusikko <strong>Nemat Battah</strong> ja musiikkikasvattaja <strong>Tuuli Malve</strong>.<br><br> Tunti on osa maailmanmusiikin työpajasarjaa nimeltä <strong>Music is Happening,</strong> jossa opetellaan lauluja ja rytmejä maailmalta.</p><p>Linkin tunnille löydät Bulgarian singing <a href=\"https://www.facebook.com/events/2284913028479873/\">Live Session -Facebook-tapahtumasta </a><br><br>HUOM!<br> Lataa Zoom koneellesi tai puhelimellesi etukäteen ja luo tunnukset. Sen jälkeen pääset osallistumaan tunnille linkin kautta. <a href=\" https://uniarts.zoom.us/j/65813651200\">Linkki tunnille</a></p><p>Teaseri tunnille löytyy <a href=\"https://www.youtube.com/watch?v=fOr7CYeBvK4\">täältä</a><br><br> Tervetuloa mukaan!<br><br> </p>",
                "en": "<p>Warmly welcome to join us to our Global music workshop that focuses this Thursday on Bulgarian singing! The live session will take 60 to 70 minutes.<br><br> Check our <a href=\" https://youtu.be/fOr7CYeBvK4\">teaser</a></p><p>PLEASE NOTICE:<br><br> You must install Zoom on your laptop or phone in advance and register. After this you will be able to join the session through the following <a href=\" https://uniarts.zoom.us/j/65813651200\">link</a></p><h3> <br> <br> Torstaina 14.5. klo 18-19.10</h3><p> <br> Tervetuloa Zoom-livetunnille opettelemaan bulgarialainen kuorolaulu!<br><br> Tunti on torstaina 14.5. klo 18.<br><br> Tunnilla opettavat muusikko <strong>Nemat Battah</strong> ja musiikkikasvattaja <strong>Tuuli Malve</strong>.<br><br> Tunti on osa maailmanmusiikin työpajasarjaa nimeltä <strong>Music is Happening,</strong> jossa opetellaan lauluja ja rytmejä maailmalta.</p><p>Linkin tunnille löydät Bulgarian singing <a href=\"https://www.facebook.com/events/2284913028479873/\">Live Session -Facebook-tapahtumasta </a></p><p>Teaseri tunnille löytyy <a href=\"https://www.youtube.com/watch?v=fOr7CYeBvK4\">täältä</a><br><br> Tervetuloa mukaan!<br><br> </p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Etätapahtuma: Opettele bulgarialainen kuorolaulu",
                "en": "Remote event: Bulgarian Singing"
            },
            "short_description": {
                "fi": "Tervetuloa Zoom-livetunnille opettelemaan bulgarialainen kuorolaulu! Tunnilla opettavat muusikko Nemat Battah ja musiikkikasvattaja Tuuli Malve. Tunti on osa maailmanmusiikin työpajasarjaa nimeltä Music is Happening, jossa opetellaan lauluja ja rytmejä maailmalta. Tervetuloa mukaan!",
                "en": "Warmly welcome to join us to our Global music workshop that focuses on Bulgarian singing! The live session will take 60 to 70 minutes."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:210492/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzbgexhru",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10216/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64332,
                    "license": "event_only",
                    "created_time": "2020-05-14T11:52:58.432635Z",
                    "last_modified_time": "2020-05-14T11:52:58.432657Z",
                    "name": "Seitsemän veljestä",
                    "url": "http://api.hel.fi/linkedevents/media/images/5699-7veljesta-0787.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Sakari Viika",
                    "alt_text": "Seitsemän miestä näyttämöllä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64332/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-05-14T12:05:05.568641Z",
            "last_modified_time": "2020-05-14T12:05:05.568669Z",
            "date_published": null,
            "start_time": "2020-05-28T16:00:00Z",
            "end_time": "2020-11-28T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/",
                "sv": "https://oopperabaletti.fi/sv/stage24/",
                "en": "https://oopperabaletti.fi/en/stage24/"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "description": {
                "fi": "<p>Aleksis Kiven Seitsemän veljestä on koko Suomen tuntema klassikkotarina, kansallisromaani, joka vie Nurmijärven maisemiin, Jukolan talon hurjien veljesten edesottamusten keskelle. </p><p>Kyläyhteisön normit ja käyttäytymismallit saavat veljekset palaamaan Impivaaran luontoon. Kun veljekset ja baletin liikekieli kohtaavat, syntyy uusi näkökulma tuttuun tarinaan.</p><p>Stage24<br>28.5. klo 19, kesto 2 h 20 min</p><p>Tallenne on nähtävissä maailmanlaajuisesti 28.11.2020 saakka</p>",
                "sv": "<p>Aleksis Kivis Sju bröder är en klassiker som hela Finland känner väl, en nationalroman som för åskådarna till landskapen i Nurmijärvi, till de vilda Jukolabröderna och deras förehavanden. </p><p>Bysamhällets normer och beteendemönster tvingar bröderna att återvända till naturen i Impivaara. Då bröderna konfronteras med balettens rörelsespråk, får man en ny synvinkel på en bekant historia.</p><p>Stage24<br>28.5. kl 19, längd 2 h 20 min</p><p>Kan ses runt i världen fram till 28.11.2020</p>",
                "en": "<p>The Seven Brothers by Aleksis Kivi is a classic tale known to all Finnish people, a seminal work in Finnish literature and as such regarded as the national novel. It is set in the lands of Nurmijärvi and details the rough lives of the unruly Jukola brothers. </p><p>Feeling constrained by the norms and morals of the village community, the brothers flee to a wilderness habitation at Impivaara. A new aspect on a familiar story comes from translating the story of the brothers into the language of ballet.</p><p>Stage24<br>28.5. at 19.00, duration 2 h 20 min</p><p>Available worldwide until 28.11.2020</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Seitsemän veljestä virtuaalisesti",
                "sv": "Sju bröder virtuellt",
                "en": "Seven Brothers virtually"
            },
            "short_description": {
                "fi": "Aleksis Kiven Seitsemän veljestä on koko Suomen tuntema klassikkotarina, kansallisromaani, joka vie Nurmijärven maisemiin,",
                "sv": "Aleksis Kivis Sju bröder är en klassiker som hela Finland känner väl, en nationalroman som för åskådarna till landskapen i Nurmijärvi",
                "en": "Aleksis Kivis Sju bröder är en klassiker som hela Finland känner väl, en nationalroman som för åskådarna till landskapen i Nurmijärvi,"
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzbgexhru/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzbga5ydq",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10216/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64331,
                    "license": "event_only",
                    "created_time": "2020-05-14T11:35:52.872889Z",
                    "last_modified_time": "2020-05-14T11:35:52.872926Z",
                    "name": "Romeo ja Julia",
                    "url": "http://api.hel.fi/linkedevents/media/images/7122-RJ20160819-881.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Sakari Viika",
                    "alt_text": "Pari halaa toisiaan näyttämöllä",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64331/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-05-14T11:48:30.379102Z",
            "last_modified_time": "2020-05-14T11:48:30.379129Z",
            "date_published": null,
            "start_time": "2020-05-18T16:00:00Z",
            "end_time": "2020-11-18T21:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/",
                "sv": "https://oopperabaletti.fi/sv/stage24/",
                "en": "https://oopperabaletti.fi/en/stage24/"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "description": {
                "fi": "<p>William Shakespearen kirjoittama tragedia kahdesta rakastavaisesta, Romeo Montaguesta ja Julia Capuletista sijoittuu Veronaan. </p><p>Nyt ikiaikainen tarina nuorista rakastavaisista ristiriitojen ja yhteisön vaatimusten paineissa saa uuden muodon Natália Horečnán koreografioimana.  Hänen teoksensa ovat ilmaisuvoimaisia ja mielikuvituksellisia. Niissä yhdistyy klassinen baletti ja nykyaikainen näyttämöilmaisu. </p><p>Romeossa ja Juliassa Horečná osoittaa, mitä ymmärtämättömyys ja rakkauden puute voivat aiheuttaa ihmiskunnalle. </p><p>Stage24<br>18.5. klo 19</p><p>Tallenne on nähtävissä maailmanlaajuisesti 18.11.2020 saakka</p>",
                "sv": "<p>William Shakespeares (1564–1616) tragedi om det älskande paret Romeo Montague och Julia Capulet utspelar sig i Verona. </p><p>Den odödliga berättelsen om de två unga älskande som utsätts för samhällets krav och konflikter får nu en ny form i Natalia Horečnás koreografi. I hennes expressiva och fantasifulla verk kombineras klassisk balett och modern scenkonst. </p><p>I Romeo och Julia visar Horečná vad brist på förståelse och kärlek kan innebära för mänskligheten.</p><p>Stage24<br>18.5. kl 19</p><p>Kan ses överallt i världen fram till 18.11.2020</p>",
                "en": "<p>William Shakespeare (1564–1616) wrote a timeless tragedy of two lover, Romeo Montague and Julia Capulet, set in Verona. </p><p>Now this tale of young lovers caught in the conflicts and pressures of the surrounding community is recast in a choreography by Natália Horečná. Her expressive and imaginative works combine classical ballet with modern stage performance. </p><p>In Romeo and Juliet, Natália Horečná shows what a lack of understanding and a shortage of love can cause. </p><p>Stage24<br>18.5. at 19.00</p><p>Available worldwide until 18.11.2020</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Romeo ja Julia virtuaalisesti",
                "sv": "Romeo och Julia virtuellt",
                "en": "Romeo and Juliet virtually"
            },
            "short_description": {
                "fi": "William Shakespearen kirjoittama tragedia kahdesta rakastavaisesta, Romeo Montaguesta ja Julia Capuletista sijoittuu Veronaan. ",
                "sv": "William Shakespeares (1564–1616) tragedi om det älskande paret Romeo Montague och Julia Capulet utspelar sig i Verona. ",
                "en": "William Shakespeare (1564–1616) wrote a timeless tragedy of two lover, Romeo Montague and Julia Capulet, set in Verona. "
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzbga5ydq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzbf3m2ju",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10105/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p20405/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p22164/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "helsinki",
            "publisher": "ytj:0586977-6",
            "sub_events": [],
            "images": [
                {
                    "id": 64329,
                    "license": "event_only",
                    "created_time": "2020-05-14T10:55:23.431702Z",
                    "last_modified_time": "2020-05-14T10:55:23.431723Z",
                    "name": "Nykytanssi-ilta virtuaalisesti: Jord,  Pneuma",
                    "url": "http://api.hel.fi/linkedevents/media/images/6890-2-Jord-2114.jpg",
                    "cropping": "320,0,1600,1280",
                    "photographer_name": "Suomen Kansallisooppera ja -baletti (c) Sakari Viika",
                    "alt_text": "Miehiä tanssimassa",
                    "data_source": "helsinki",
                    "publisher": "ytj:0586977-6",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/64329/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2020-05-14T11:24:20.954397Z",
            "last_modified_time": "2020-05-14T11:24:20.954416Z",
            "date_published": null,
            "start_time": "2020-05-04T16:00:00Z",
            "end_time": "2020-08-07T20:59:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://oopperabaletti.fi/stage24/nykytanssi-ilta-jord-pneuma/",
                "sv": "https://oopperabaletti.fi/sv/stage24/nutidsdanskvall-jord-pneuma/",
                "en": "https://oopperabaletti.fi/en/stage24/contemporary-dance-evening-jord-pneuma/"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Kansallisooppera ja -baletti",
                "sv": "Finlands Nationalopera och -balett",
                "en": "Finnish National Opera and Ballet"
            },
            "description": {
                "fi": "<p>Suomen Kansallisbaletti esittää Stage24-palvelussa nykytanssiesitykset Jord ja Pneuma.</p><p>Jorma Uotisen Jord-koreografiassa 12 miestanssijaa esittävät dynaamisia triibaalitansseja.</p><p>Carolyn Carlsonin Pneuma on tyylikäs ja filosofinen teos, oodi ihmisyydelle. Teos käsittelee ihmisen kaksijakoisuutta: ruumiin ja sielun, materian ja mielen kokonaisuutta. </p><p>Stage24<br>Tallenne on nähtävissä maailmanlaajuisesti 7.8.2020 saakka</p>",
                "sv": "<p>Finlands Nationalbalett uppträder nutidsdansföreställningarna Jord och Pneuma på Stage24.</p><p>12 manliga dansare uppträder dynamiska tribaldanser i Jorma Uotinens koreografi Jord. </p><p>Carolyn Carlsons Pneuma är ett ljust, poetiskt och symboliskt verk med många drömlika bilder, som är ett både passionerat och poetiskt ode till mänskligheten.</p><p>Stage24<br>Kan ses överallt i världen fram till 7.8.2020</p>",
                "en": "<p>Finlands Nationalbalett erbjuder nutidsdansföreställningarna Jord och Pneuma virtuellt på Stage24.</p><p>12 male dancers are performing dynamic tribal dances  in Jorma Uotinen’s  Jord.</p><p>Carolyn Carlson's Pneuma is a luminous, poetic and symbolic work layered with dreamlike imagery and also an ode to humanity, simultaneously poetic and passionate.</p><p>Stage24<br>Available worldwide until 7.8.2020</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Nykytanssi-ilta virtuaalisesti: Jord, Pneuma",
                "sv": "Nutidsdanskväll virtuellt: Jord, Pneuma",
                "en": "Contemporary Dance virtually: Jord, Pneuma"
            },
            "short_description": {
                "fi": "Suomen Kansallisbaletti esittää Stage24-palvelussa nykytanssiesitykset Jord ja Pneuma.",
                "sv": "Finlands Nationalbalett erbjuder nutidsdansföreställningarna Jord och Pneuma virtuellt på Stage24.",
                "en": "Finnish National Ballet is performing  contemporary dance performances Jord and Pneuma online on Stage24."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:afzbf3m2ju/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:50575",
            "location": {
                "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:602/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:616/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:671/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:673/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 61710,
                    "license": "event_only",
                    "created_time": "2019-12-31T15:17:57.693793Z",
                    "last_modified_time": "2019-12-31T15:17:57.693814Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_661802.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "http://api.hel.fi/linkedevents/v1/image/61710/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2019-12-31T15:17:57.639403Z",
            "last_modified_time": "2020-05-14T11:13:48.185224Z",
            "date_published": null,
            "start_time": "2020-06-08T07:00:00Z",
            "end_time": "2020-06-12T11: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": true,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B2BDB21A8193D3D7A044A12F01C1A0D2/Stoan_maksuttomat_kesalomakurssit_lapsille_"
            },
            "location_extra_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Stoa tarjoaa itähelsinkiläisille lapsille maksutonta, taiteellista kesäkurssitoimintaa kesäkuun toisella viikolla.</p><p>Tiedustelut: Hanna Westerholm, hanna.westerholm@hel.fi</p><p>Katso taidekasvatussivulta kesän kurssit!</p>"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Stoan maksuttomat kesälomakurssit lapsille – ma–pe klo 10–14"
            },
            "short_description": {
                "fi": "Stoa tarjoaa itähelsinkiläisille lapsille maksutonta, taiteellista kesäkurssitoimintaa kesäkuun toisella viikolla."
            },
            "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:50575/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:afzbfjloqa",
            "last_modified_time": "2020-05-14T10:05:31.148719Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        },
        {
            "id": "helsinki:afzbfjlode",
            "last_modified_time": "2020-05-14T10:05:31.047267Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        },
        {
            "id": "helsinki:afzbfjlnxi",
            "last_modified_time": "2020-05-14T10:05:30.950598Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        },
        {
            "id": "helsinki:afzbfjlnlq",
            "last_modified_time": "2020-05-14T10:05:30.856326Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        },
        {
            "id": "helsinki:afzbfjlm7e",
            "last_modified_time": "2020-05-14T10:05:30.757431Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        },
        {
            "id": "helsinki:afzbfjlmtm",
            "last_modified_time": "2020-05-14T10:05:30.662832Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        },
        {
            "id": "helsinki:afzbfjlmhq",
            "last_modified_time": "2020-05-14T10:05:30.569095Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        },
        {
            "id": "helsinki:afzbfjll4a",
            "last_modified_time": "2020-05-14T10:05:30.474815Z",
            "deleted": true,
            "replaced_by": null,
            "name": {
                "fi": "POISTETTU",
                "sv": "RADERAD",
                "en": "DELETED"
            }
        }
    ]
}