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 weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

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=helsinki

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 super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

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

{
    "meta": {
        "count": 20940,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=1046",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=1044"
    },
    "data": [
        {
            "id": "espoo_le:agggfz7tzm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7ttm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7twi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vie/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-09-22T11:31:12.648883Z",
            "last_modified_time": "2022-10-10T10:38:21.840249Z",
            "date_published": null,
            "start_time": "2022-10-05T14:30:00Z",
            "end_time": "2022-12-07T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Ison_Omenan_kirjasto"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Matinkylän Lauluilta"
            },
            "short_description": {
                "fi": "Tervetuloa laulamaan yhdessä Etelä-Espoon Eläkeläisten Musiikkikerho Elmuskan kanssa."
            },
            "description": {
                "fi": "<p>Tervetuloa laulamaan yhdessä Etelä-Espoon Eläkeläisten Musiikkikerho Elmuskan kanssa.</p><p>Lauluillat syksyllä keskiviikkoisin 7.9., 5.10., 2.11. ja 7.12.</p><p>Keskiviikkona 5.10. Tapio Rautavaaran jalanjäljillä:</p><p>Aimo Holtari, laulu ja Erkki Hepoaho, koskettimet</p><p>Elmuska laulattaa Marja Koskenalhon johdolla.</p><p>Väliajalla Matinkylä-Seura järjestää maksuttoman tarjoilun.</p><p></p>"
            },
            "provider": {
                "fi": "Matinkylä-Seura ja Etelä-Espoon Eläkeläiset"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7tzm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7t4q",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz654q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65wq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz664e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7agi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/945774256815165",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://twitter.com/nuoriespoo",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://www.instagram.com/nuoriespoo/",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:koha",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-09-26T08:18:12.171458Z",
            "last_modified_time": "2022-10-06T11:41:04.496267Z",
            "date_published": null,
            "start_time": "2022-10-08T10:00:00Z",
            "end_time": "2022-10-08T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.espoo.fi/fi/centtifest-partyt-entressen-kattoterassilla-8102022-klo-13-20",
                "sv": "https://www.espoo.fi/sv/centtifest-party-pa-entresses-takterrass-den-8-oktober-2022-klockan-13-20",
                "en": "https://www.espoo.fi/en/centtifest-rooftop-party-entresse-on-8-october-2022-1-pm-8-pm"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Entressen kauppakeskuksen kattoterassi & Entressen kirjasto, Siltakatu 11",
                "sv": "På köpcentret Entresses takterrass och i biblioteket, Brogatan 11",
                "en": "On the terraced roof and library premises of the Entresse shopping centre, Siltakatu 11, Espoo"
            },
            "name": {
                "fi": "CenttiFest - Partyt Entressen kattoterassilla 8.10.2022 klo 13–20",
                "sv": "CenttiFest – Party på Entresses takterrass den 8 oktober 2022 klockan 13–20",
                "en": "CenttiFest - Rooftop party in Entresse on 8 October 2022 from 1 p.m. to 8 p.m."
            },
            "short_description": {
                "fi": "Entressen kattoterassilla & kirjastossa erityisesti nuorille suunnattu CenttiFest-tapahtuma on maksuton, kaikille avoin ja illan pääesiintyjä on Robin Packalen!",
                "sv": "Det blir fest på Entresses takterrass den 8 oktober 2022 klockan 13–20 när CenttiFest, ett evenemang för barnfamiljer och särskilt ungdomar, tar över utrymmet. ",
                "en": "The terraced roof of Entresse is the place to be when it houses the CenttiFest event young people and families on 8 October 2022 from 1 p.m. to 8 p.m."
            },
            "description": {
                "fi": "<p>Entressen kattoterassilla kajahtaa lokakuussa, kun tilan valtaa erityisesti nuorille suunnattu CenttiFest -tapahtuma 8.10.2022 klo 13–20. Tutustu paremmin päivän runsaaseen ja monipuoliseen ohjelmaan. Tekemistä löytyy moneen makuun niin kirjastossa sisätiloissa kuin ulkopihalla kattoterassilla. Tapahtuma on maksuton, kaikille avoin ja illan pääesiintyjä on Robin Packalen!</p><p>Kivaa tekemistä koko päiväksi!</p><p>CenttiFest  tarjoaa kivaa tekemistä koko päiväksi. Ohjelma alkaa kello 13 ja päiväohjelma on suunnattu erityisesti lapsiperheille ja varttuneemmalle väelle. Luvassa on paljon kivaa tekemistä perheen pienimmille (ja miksei isommillekin), muun muassa kirjaston satuhetki, kädentaito- ja animaatiopajat, Pokemon Go -turnaus, säbätutka ja paljon muuta. Päivätanssit livemusiikin tahdissa tanssittavat lavalla kaikenikäisiä klo 15–16.</p><p>Erityisesti nuorille suunnattu iltaohjelma alkaa kello 16:15, jolloin kattoterassibileiden valovoimaiset artistin valtaavat lavan. Lavalla keikkatunnelmaa nostattamassa nähdään nuoria  artisteja: Scartier, Nicholas, Aaromikael sekä Kid Chakrit, joiden jälkeen kattoterassibileet huipentuvat supertähti Robin Packalenin keikkaan!</p><p>Ohjelma</p><p>Entressen kattoterassilla:</p><p>14-14.30 Kaikille sopiva jumppa<br>15-16 Päivätanssit, JarmosBand<br>16-19 Säbätutka<br>16-19 Katukoris<br>16.15-16.45 Kid Chakrit<br>17-19 Munkkipiste<br>17.00-17.30 Aaromikael<br>17.45-18.15 Scartier<br>18.30-19.00 Nicholas<br>19.15-20.00 Robin Packalen</p><p>Sisällä Entressen kirjastossa:</p><p>10-16 Luontoliiton sarjakuvatyöpaja, Huom! Ennakkoilmoittautuminen 5.10. mennessä: www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Entressen_kirjasto/Tapahtumat<br>12.30 Ukrainankielinen satuhetki<br>13-14 Animaatiopaja<br>13-13.45 Bändisoittimet tutuksi<br>13.30 Ruotsinkielinen satuhetki<br>14-15 Bookmark-workshop<br>14-16 Kädentaitopaja perheille<br>14-18 Pokemon Go -turnaus / Estradi<br>14.30 Suomenkielinen satuhetki<br>​​​​​​​15-16 Musahippa (Kibe)<br>15-17 Tyttöjen talo (Jukebox)<br>16-18 Omnian taidepaja<br>16-19 Mocktailseura (Jukebox)</p><p>Muutokset ohjelmaan mahdollisia.</p><p>CenttiFest - Partyt Entressen kattoterassilla (Valatori)</p><p>- Mitä: Lapsiperheille ja erityisesti nuorille suunnattu CenttiFest -tapahtuma<br>- Milloin: Lauantaina 8.10.2022 klo 13–20<br>- Missä: Entressen kauppakeskuksen kattoterassilla (Valatori) sekä kirjaston tiloissa, Siltakatu 11, Espoo<br>- Maksuton, päihteetön ja kaikille avoin<br>Tervetuloa!</p><p>Nuori Espoo järjestää Espoo 50 -juhlavuotta juhlistavien nuorille suunnattujen tapahtumien sarjan. CenttiFest on Espoon kaupunginkirjaston kanssa yhteistyössä toteutettu nuorille ja lapsiperheille suunnattu Nuori Espoo -tapahtuma. Olethan kuulolla, mitä muuta kivaa tekemistä ja tapahtumia Espoon nuorisopalvelut loppuvuoden aikana järjestää!</p><p>Seuraa meitä somessa @nuoriespoo (Instagram, TikTok, Facebook, Twitter)<br>#NuoriEspoo #kivaatekemistä</p>",
                "sv": "<p>Det blir fest på Entresses takterrass den 8 oktober 2022 klockan 13–20 när CenttiFest, ett evenemang för barnfamiljer och särskilt ungdomar, tar över utrymmet. Läs mer om dagens rika och mångsidiga program. Du kan hitta alla slags aktiviteter såväl inomhus i biblioteket som utomhus på takterrassen. Evenemanget är gratis och öppet för alla. Kvällens huvudartist är Robin Packalen!</p><p>Roliga aktiviteter för hela dagen!<br>CenttiFest är hela familjens evenemang och bjuder på roliga aktiviteter under hela dagen. Programmet börjar klockan 13, och dagsprogrammet är riktat särskilt till barnfamiljer och äldre. Det utlovas massor av roliga aktiviteter för de minsta (och varför inte de större) i familjen, till exempel en sagostund i biblioteket, hantverks- och animationsverkstäder, en Pokémon Go-turnering, innebandy och mycket mer.</p><p>Eftermiddagsdans med levande musik får folk i alla åldrar att dansa på scenen klockan 15–16. Kvällsprogrammet som är särskilt riktat till ungdomar börjar klockan 16.15 då de ljusstarka artisterna på partyn på takterrassen tar över scenen. På scenen ser vi unga artister som skapar spelningsstämning: Scartier, Nicholas, Aaromikael och Kid Chakrit, varefter partyn på takterrassen kulminerar i superstjärnan Robin Packalens spelning!</p><p>CenttiFest – program</p><p>På Entresses takterrass:</p><p>14–14.30 Gympa för alla<br>15–16 Eftermiddagsdans, JarmosBand<br>16–19 Innebandy<br>16–19 Streetbasket<br>17–19 Munkstation<br>16.15–16.45 Kid Chakrit<br>17.00–17.30 Aaromikael<br>17.45–18.15 Scartier<br>18.30–19.00 Nicholas<br>19.15–20.00 Robin Packalen</p><p>Inne i Entressebiblioteket:</p><p>12.30 Sagostund på ukrainska<br>13–14 Animationsverkstad<br>13–13.45 Lär känna bandinstrument<br>13.30 Sagostund på svenska<br>14–15 Bookmark-verkstad<br>14–16 Hantverksverkstad för familjer<br>14–18 Pokémon Go-turnering/Estradi<br>14.30 Sagostund på finska<br>​​​​​​​15-16 Musahippa (Kibe)<br>15–17 Flickornas hus (Jukebox)<br>16–18 Omnias konstverkstad<br>16–19 Mocktailklubb (Jukebox)</p><p>Ändringar i programmet är möjliga.</p><p>CenttiFest – Party på Entresses takterrass</p><p>- Vad: CenttiFest, ett evenemang för barnfamiljer och särskilt ungdomar<br>- När? Lördagen den 8 oktober 2022 kl. 13–20<br>- Var: På köpcentret Entresses takterrass och i biblioteket, Brogatan 11, Esbo<br>- Gratis, rusmedelsfritt och öppet för alla<br>Välkommen!</p><p>Nuori Espoo anordnar en rad evenemang för ungdomar för att fira jubileumsåret Esbo 50 år som stad. CenttiFest är ett Nuori Espoo-evenemang för ungdomar och barnfamiljer som anordnas i samarbete med Esbo stadsbibliotek. Håll koll på de andra roliga aktiviteterna och evenemangen som Esbo Ungdomstjänster ordnar under resten av året!</p><p>Följ oss på sociala medier @nuoriespoo (Instagram, TikTok, Facebook, Twitter)</p><p>#NuoriEspoo #kivaatekemistä</p>",
                "en": "<p>The terraced roof of Entresse is the place to be when it houses the CenttiFest event for  young people and families on 8 October 2022 from 1 p.m. to 8 p.m. Read more about the plentiful and diverse programme. There will be activities to suit all tastes, both inside the library and outside on the terraced roof. The event is free of charge and open to everyone. The headliner of the evening is Robin Packalen!</p><p>Fun things to do for the whole day!<br>CenttiFest is a family event and offers many fun activities to do for the whole day. The programme starts at 1 p.m. and the day programme is intended for families and elderly people. There will be many fun activities for the younger (and why not older) family members, including story time at the library, crafts and animation workshops, a Pokémon Go tournament, floorball  and many other options.</p><p>Afternoon dance accompanied by live music is open to everyone from 3 p.m. to 4 p.m. The evening programme, which is intended for young people in particular, begins at 4:15 p.m. when the brilliant artists of the rooftop party step on the stage. The stars of the night are the following young artists: Scartier, Nicholas, Aaromikael and Kid Chakrit, after which the rooftop party is crowned by a performance by Robin Packalen!</p><p>CenttiFest programme</p><p>On the terraced roof of Entresse:</p><p>From 2 p.m. to 2:30 p.m. Exercises for everyone<br>From 3 p.m. to 4 p.m. Afternoon dance, JarmosBand<br>From 4 p.m. to 7 p.m. Floorball<br>From 4 p.m. to 7 p.m. Street basketball<br>From 5 p.m. to 7 p.m. Doughnut point<br>From 4:15 p.m. to 16:45 p.m. Kid Chakrit<br>From 5 p.m. to 5:30 p.m. Aaromikael<br>From 5:45 p.m. to 18:15 p.m. Scartier<br>From 6:30 p.m. to 7 p.m. Nichlolas<br>From 7:15 p.m. to 8 p.m. Robin Packalen</p><p>In Entresse Library:</p><p>At noon 12:30 Story time in Ukrainian<br>From 1 p.m. to 2 p.m. Animation workshop<br>From 1 p.m. to 1:45 p.m. Tour of band instruments<br>At 1:30 p.m. Story time in Swedish<br>From 2 p.m. to 3 p.m. Bookmark workshop<br>From 2 p.m. to 4 p.m. Crafts workshop for families<br>From 2 p.m. to 6 p.m. Pokémon Go tournament/Estradi<br>At 2:30 p.m. Story time in Finnish<br>From 3 p.m. to 4 p.m. ​​​​​​​Musahippa (Kibe)<br>From 3 p.m. to 5 p.m. Girls’ House (Jukebox)<br>From 4 p.m. to 6 p.m. Art workshop by Omnia<br>From 4 p.m. to 7 p.m. Mocktail association (Jukebox)</p><p>The programme is subject to change.</p><p>CenttiFest – Party on the terraced roof of Entresse</p><p>- What: The CenttiFest event intended for families and young people<br>- When: Saturday, 8 October 2022 from 1 p.m. to 8 p.m.<br>- Where: On the terraced roof and library premises of the Entresse shopping centre, Siltakatu 11, Espoo<br>- Free of charge, open to everyone, and substance-free.<br>Welcome!</p><p>Nuori Espoo is organising a series of events for young people to celebrate the 50th anniversary of Espoo. CenttiFest is an Nuori Espoo event realised in cooperation with the City Library and intended for young people and families with children. Stay tuned to hear about the other fun things to do and events organised by Espoo Youth Services for the rest of the year.</p><p>Follow us on social media @nuoriespoo (Instagram, Facebook, Twitter)</p><p>#NuoriEspoo #kivaatekemistä</p>"
            },
            "provider": {
                "fi": "Nuori Espoo & Espoon kaupunginkirjasto",
                "sv": "Nuori Espoo & Esbo stadsbibliotek",
                "en": "Nuori Espoo & Espoo City Library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7t4q/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7t74",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-10-06T07:47:17.569214Z",
            "last_modified_time": "2022-10-06T07:47:17.569239Z",
            "date_published": "2022-10-06T08:39:00Z",
            "start_time": "2022-10-22T13:00:00Z",
            "end_time": "2022-10-22T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Konsertti__Harlots_of_Beyond(241755)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Konsertti - Harlots of Beyond"
            },
            "short_description": {
                "fi": "Jo vuonna 1984 aloittanut goottirock yhtye Harlots of Beyond julkaisee uuden\n\nalbuminsa vuoden ainoassa konsertissaan Sellon kirjastossa 22.10.2022 klo 16.00."
            },
            "description": {
                "fi": "<p>Uutta \"Four Witch Queens\" albumia edeltävät julkaisut olivat \"Sea of Silence\"</p><p>joka julkaistiin myös vinyyli Lp:nä Espanjassa ja Englannissa 2017</p><p>ja \"Live at Hard Rock Cafe\" joka julkaistiin Englannissa 2018.</p><p>Harlots of Beyond on julkaissut yli 10 täyspitkää levyä Euroopan</p><p>eri maissa ja uudella levyllä suoraviivaista post punkkia värittää vaikutteet neofolkista  psykobillyyn,kuten Harlots of Beyond levyillä aina.</p><p>Kansainvälisesti arvostetun kulttibändin ainoa esiintyminen kotimaassa vuonna 2022.</p>"
            },
            "provider": {
                "fi": "Espoon kaupunginkirjasto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7t74/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7udi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uou/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-09-27T09:57:34.963185Z",
            "last_modified_time": "2022-09-27T10:01:07.765562Z",
            "date_published": null,
            "start_time": "2022-10-20T06:01:00Z",
            "end_time": "2022-10-24T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.soukankamerat.net"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "name": {
                "fi": "Soukan kamerat: Syysnäyttely digikuville 2022"
            },
            "short_description": {
                "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta."
            },
            "description": {
                "fi": "<p>Soukan kamerat: Syysnäyttely digikuville 2022 on ensimmäinen laatuaan ja toteutetaan yhteistyössä Ison Omenan kirjaston kanssa. Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta. Kukin valokuvaaja on itse valinnut kuvausaiheen. Edellinen Iso Omena yhteistyönäyttely oli Ison Omenan ulkovitriinin valokuvanäyttely marraskussa 2021.</p><p>Digitaalisten valokuvien näyttely on Ison Omenan kirjastossa nähtävissä seuraavina aikoina:</p><p>torstai - maanantai 29.9. - 3.10. </p><p>perjantai - maanantai 7. - 10.10.</p><p>perjantai - sunnuntai 14. - 16.10.</p><p>torstai - maanantai 20. - 24.10.</p><p>Näyttelyn avajaiset 29.9.2022 klo 10 Ison Omenan kirjaston stagella.</p>"
            },
            "provider": {
                "fi": "Soukan kamerat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7udi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7uge",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uou/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-09-27T09:57:34.880528Z",
            "last_modified_time": "2022-09-27T10:01:07.729390Z",
            "date_published": null,
            "start_time": "2022-10-14T06:00:00Z",
            "end_time": "2022-10-16T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.soukankamerat.net"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "name": {
                "fi": "Soukan kamerat: Syysnäyttely digikuville 2022"
            },
            "short_description": {
                "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta."
            },
            "description": {
                "fi": "<p>Soukan kamerat: Syysnäyttely digikuville 2022 on ensimmäinen laatuaan ja toteutetaan yhteistyössä Ison Omenan kirjaston kanssa. Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta. Kukin valokuvaaja on itse valinnut kuvausaiheen. Edellinen Iso Omena yhteistyönäyttely oli Ison Omenan ulkovitriinin valokuvanäyttely marraskussa 2021.</p><p>Digitaalisten valokuvien näyttely on Ison Omenan kirjastossa nähtävissä seuraavina aikoina:</p><p>torstai - maanantai 29.9. - 3.10. </p><p>perjantai - maanantai 7. - 10.10.</p><p>perjantai - sunnuntai 14. - 16.10.</p><p>torstai - maanantai 20. - 24.10.</p><p>Näyttelyn avajaiset 29.9.2022 klo 10 Ison Omenan kirjaston stagella.</p>"
            },
            "provider": {
                "fi": "Soukan kamerat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uge/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7uja",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uou/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-09-27T09:57:34.792995Z",
            "last_modified_time": "2022-09-27T10:01:07.693257Z",
            "date_published": null,
            "start_time": "2022-10-07T06:00:00Z",
            "end_time": "2022-10-10T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.soukankamerat.net"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "name": {
                "fi": "Soukan kamerat: Syysnäyttely digikuville 2022"
            },
            "short_description": {
                "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta."
            },
            "description": {
                "fi": "<p>Soukan kamerat: Syysnäyttely digikuville 2022 on ensimmäinen laatuaan ja toteutetaan yhteistyössä Ison Omenan kirjaston kanssa. Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta. Kukin valokuvaaja on itse valinnut kuvausaiheen. Edellinen Iso Omena yhteistyönäyttely oli Ison Omenan ulkovitriinin valokuvanäyttely marraskussa 2021.</p><p>Digitaalisten valokuvien näyttely on Ison Omenan kirjastossa nähtävissä seuraavina aikoina:</p><p>torstai - maanantai 29.9. - 3.10. </p><p>perjantai - maanantai 7. - 10.10.</p><p>perjantai - sunnuntai 14. - 16.10.</p><p>torstai - maanantai 20. - 24.10.</p><p>Näyttelyn avajaiset 29.9.2022 klo 10 Ison Omenan kirjaston stagella.</p>"
            },
            "provider": {
                "fi": "Soukan kamerat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uja/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7uly",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uou/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-09-27T09:57:34.707463Z",
            "last_modified_time": "2022-09-27T10:01:07.657295Z",
            "date_published": null,
            "start_time": "2022-09-29T07:00:00Z",
            "end_time": "2022-10-03T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.soukankamerat.net"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "name": {
                "fi": "Soukan kamerat: Syysnäyttely digikuville 2022"
            },
            "short_description": {
                "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta."
            },
            "description": {
                "fi": "<p>Soukan kamerat: Syysnäyttely digikuville 2022 on ensimmäinen laatuaan ja toteutetaan yhteistyössä Ison Omenan kirjaston kanssa. Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta. Kukin valokuvaaja on itse valinnut kuvausaiheen. Edellinen Iso Omena yhteistyönäyttely oli Ison Omenan ulkovitriinin valokuvanäyttely marraskussa 2021.</p><p>Digitaalisten valokuvien näyttely on Ison Omenan kirjastossa nähtävissä seuraavina aikoina:</p><p>torstai - maanantai 29.9. - 3.10. </p><p>perjantai - maanantai 7. - 10.10.</p><p>perjantai - sunnuntai 14. - 16.10.</p><p>torstai - maanantai 20. - 24.10.</p><p>Näyttelyn avajaiset 29.9.2022 klo 10 Ison Omenan kirjaston stagella.</p>"
            },
            "provider": {
                "fi": "Soukan kamerat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uly/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7uou",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7udi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uge/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uja/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uly/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-09-27T09:57:34.079556Z",
            "last_modified_time": "2022-09-27T10:00:59.574205Z",
            "date_published": null,
            "start_time": "2022-09-29T07:00:00Z",
            "end_time": "2022-10-24T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.soukankamerat.net"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "name": {
                "fi": "Soukan kamerat: Syysnäyttely digikuville 2022"
            },
            "short_description": {
                "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta."
            },
            "description": {
                "fi": "<p>Soukan kamerat: Syysnäyttely digikuville 2022 on ensimmäinen laatuaan ja toteutetaan yhteistyössä Ison Omenan kirjaston kanssa. Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta. Kukin valokuvaaja on itse valinnut kuvausaiheen. Edellinen Iso Omena yhteistyönäyttely oli Ison Omenan ulkovitriinin valokuvanäyttely marraskussa 2021.</p><p>Digitaalisten valokuvien näyttely on Ison Omenan kirjastossa nähtävissä seuraavina aikoina:</p><p>torstai - maanantai 29.9. - 3.10. </p><p>perjantai - maanantai 7. - 10.10.</p><p>perjantai - sunnuntai 14. - 16.10.</p><p>torstai - maanantai 20. - 24.10.</p><p>Näyttelyn avajaiset 29.9.2022 klo 10 Ison Omenan kirjaston stagella.</p>"
            },
            "provider": {
                "fi": "Soukan kamerat"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uou/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7urm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T12:00:22.254842Z",
            "last_modified_time": "2022-09-22T12:00:22.254865Z",
            "date_published": null,
            "start_time": "2022-11-17T15:00:00Z",
            "end_time": "2022-11-17T17:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Monitoimitila Salonki"
            },
            "name": {
                "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi"
            },
            "short_description": {
                "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön."
            },
            "description": {
                "fi": "<p>Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön. Kansallisteatterin 150-vuotisen historian aikana on perinteisesti ollut tapana toteuttaa kiertueita ja vierailuesityksiä. Nyt teatterin peruskorjauksen ja koronahaasteiden vuoksi kiertue päätettiin toteuttaa digitaalisesti. Kjell Westön samannimiseen romaaniin pohjautuva ja Juhana von Baghin ohjaama digidraama on kaikkien kirjastojen käytettävissä veloituksetta.</p><p>Esitykset Espoon kirjastoissa:</p><p>torstai 13.10. klo 12 Ison Omenan kirjasto, stage</p><p>tiistai 1.11. klo 17 Sellon kirjasto, Akselisali</p><p>sunnuntai 6.11. klo 15 Ison Omenan kirjasto, stage</p><p>torstai 10.11. klo 17.30 Tapiolan kirjasto, Kaija-tila</p><p>lauantai 12.11. klo 15 Entressen kirjasto, Sininen huone</p><p>torstai 17.11. klo 17 Lippulaivan kirjasto, monitoimitila Salonki</p><p>Kirjailija Kjell Westö<br>Kirjailija Kjell Westö (s. 1961) on helsinkiläinen kirjailija. Rikinkeltainen taivas on hänen seitsemäs romaaninsa. Westö on voittanut mm. Finlandia-palkinnon romaanillaan Missä kuljimme kerran (2006).</p><p><br>Rikinkeltainen taivas<br>Rikinkeltainen taivas on intiimi ja musiikillinen matka, joka johtaa lapsuuden unenkaltaisesta kesäparatiisista 1960-luvulta sirpaleiseen nykymaailmaan, läpi toivon ja pettymysten täyttämien vuosikymmenten. Melankolian ja kauneuden läpäisemässä esityksessä sukupolvet, sukupuolet ja sosiaaliluokat törmäävät toisiinsa muistojen ja tosiasioiden kaleidoskoopissa.<br>Sekä Kjell Westön romaani että näytelmän käsikirjoitus käsittelevät pitkää ajanjaksoa vuodesta 1969 vuoteen 2016.</p><p><br>Rikinkeltainen taivas -näytelmän kantaesitys oli Kansallisteatterin Pienellä näyttämöllä 4.12.2019. Esityksen taltiointi on tehty Kansallisteatterin Suurella näyttämöllä helmikuussa 2021.</p><p><br>Työryhmä<br>K, kirjailija Timo Tuominen / Pyry Nikkilä</p><p>STELLA RABELL Annika Poijärvi</p><p>ALEX RABELL Juha Varis</p><p>LINDA VOGT / CLARA RABELL, Alexin ja Stellan äiti Pirjo Lonka</p><p>KRISTER ”KRIDE” TUOMINEN / PER-OLOF ”POA” RABELL, Alexin ja Stellan isoisä Johannes Purovaara</p><p>Lapset äänirooleissa Hilma Nieminen, Roope Nieminen, Olavi von Bagh </p><p>Ohjaus Juhana von Bagh</p><p>Dramatisointi Michael Baran</p><p>Romaanin suomennos Laura Beck</p><p>Koreografia Jyrki Karttunen</p><p>Lavastus Kati Lukka</p><p>Pukusuunnittelu Tarja Simone</p><p>Valosuunnittelu Ville Toikka</p><p>Äänisuunnittelu Tatu Nenonen</p><p>Videosuunnittelu Pyry Hyttinen</p><p>Naamioinnin suunnittelu Jari Kettunen</p><p>Ohjaajan assistentti Alise Polačenko</p><p>Esityksessä kuultava musiikki on kuultavissa Spotifyssa Rikinkeltainen taivas -soittolistalla.</p>"
            },
            "provider": {
                "fi": "Lippulaivan kirjasto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7urm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7uuy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T11:58:28.093406Z",
            "last_modified_time": "2022-09-22T11:58:28.093430Z",
            "date_published": null,
            "start_time": "2022-11-12T13:00:00Z",
            "end_time": "2022-11-12T15:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "name": {
                "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi"
            },
            "short_description": {
                "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön."
            },
            "description": {
                "fi": "<p>Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön. Kansallisteatterin 150-vuotisen historian aikana on perinteisesti ollut tapana toteuttaa kiertueita ja vierailuesityksiä. Nyt teatterin peruskorjauksen ja koronahaasteiden vuoksi kiertue päätettiin toteuttaa digitaalisesti. Kjell Westön samannimiseen romaaniin pohjautuva ja Juhana von Baghin ohjaama digidraama on kaikkien kirjastojen käytettävissä veloituksetta.</p><p>Esitykset Espoon kirjastoissa:</p><p>torstai 13.10. klo 12 Ison Omenan kirjasto, stage</p><p>tiistai 1.11. klo 17 Sellon kirjasto, Akselisali</p><p>sunnuntai 6.11. klo 15 Ison Omenan kirjasto, stage</p><p>torstai 10.11. klo 17.30 Tapiolan kirjasto, Kaija-tila</p><p>lauantai 12.11. klo 15 Entressen kirjasto, Sininen huone</p><p>torstai 17.11. klo 17 Lippulaivan kirjasto, monitoimitila Salonki</p><p>Kirjailija Kjell Westö<br>Kirjailija Kjell Westö (s. 1961) on helsinkiläinen kirjailija. Rikinkeltainen taivas on hänen seitsemäs romaaninsa. Westö on voittanut mm. Finlandia-palkinnon romaanillaan Missä kuljimme kerran (2006).</p><p><br>Rikinkeltainen taivas<br>Rikinkeltainen taivas on intiimi ja musiikillinen matka, joka johtaa lapsuuden unenkaltaisesta kesäparatiisista 1960-luvulta sirpaleiseen nykymaailmaan, läpi toivon ja pettymysten täyttämien vuosikymmenten. Melankolian ja kauneuden läpäisemässä esityksessä sukupolvet, sukupuolet ja sosiaaliluokat törmäävät toisiinsa muistojen ja tosiasioiden kaleidoskoopissa.<br>Sekä Kjell Westön romaani että näytelmän käsikirjoitus käsittelevät pitkää ajanjaksoa vuodesta 1969 vuoteen 2016.</p><p><br>Rikinkeltainen taivas -näytelmän kantaesitys oli Kansallisteatterin Pienellä näyttämöllä 4.12.2019. Esityksen taltiointi on tehty Kansallisteatterin Suurella näyttämöllä helmikuussa 2021.</p><p><br>Työryhmä<br>K, kirjailija Timo Tuominen / Pyry Nikkilä</p><p>STELLA RABELL Annika Poijärvi</p><p>ALEX RABELL Juha Varis</p><p>LINDA VOGT / CLARA RABELL, Alexin ja Stellan äiti Pirjo Lonka</p><p>KRISTER ”KRIDE” TUOMINEN / PER-OLOF ”POA” RABELL, Alexin ja Stellan isoisä Johannes Purovaara</p><p>Lapset äänirooleissa Hilma Nieminen, Roope Nieminen, Olavi von Bagh </p><p>Ohjaus Juhana von Bagh</p><p>Dramatisointi Michael Baran</p><p>Romaanin suomennos Laura Beck</p><p>Koreografia Jyrki Karttunen</p><p>Lavastus Kati Lukka</p><p>Pukusuunnittelu Tarja Simone</p><p>Valosuunnittelu Ville Toikka</p><p>Äänisuunnittelu Tatu Nenonen</p><p>Videosuunnittelu Pyry Hyttinen</p><p>Naamioinnin suunnittelu Jari Kettunen</p><p>Ohjaajan assistentti Alise Polačenko</p><p>Esityksessä kuultava musiikki on kuultavissa Spotifyssa Rikinkeltainen taivas -soittolistalla.</p>"
            },
            "provider": {
                "fi": "Entressen kirjasto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uuy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7uya",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T11:56:38.707944Z",
            "last_modified_time": "2022-09-22T11:56:38.707969Z",
            "date_published": null,
            "start_time": "2022-11-10T15:30:00Z",
            "end_time": "2022-11-10T17:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Tapahtumatila Kaija"
            },
            "name": {
                "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi"
            },
            "short_description": {
                "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön."
            },
            "description": {
                "fi": "<p>Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön. Kansallisteatterin 150-vuotisen historian aikana on perinteisesti ollut tapana toteuttaa kiertueita ja vierailuesityksiä. Nyt teatterin peruskorjauksen ja koronahaasteiden vuoksi kiertue päätettiin toteuttaa digitaalisesti. Kjell Westön samannimiseen romaaniin pohjautuva ja Juhana von Baghin ohjaama digidraama on kaikkien kirjastojen käytettävissä veloituksetta.</p><p>Esitykset Espoon kirjastoissa:</p><p>torstai 13.10. klo 12 Ison Omenan kirjasto, stage</p><p>tiistai 1.11. klo 17 Sellon kirjasto, Akselisali</p><p>sunnuntai 6.11. klo 15 Ison Omenan kirjasto, stage</p><p>torstai 10.11. klo 17.30 Tapiolan kirjasto, Kaija-tila</p><p>lauantai 12.11. klo 15 Entressen kirjasto, Sininen huone</p><p>torstai 17.11. klo 17 Lippulaivan kirjasto, monitoimitila Salonki</p><p>Kirjailija Kjell Westö<br>Kirjailija Kjell Westö (s. 1961) on helsinkiläinen kirjailija. Rikinkeltainen taivas on hänen seitsemäs romaaninsa. Westö on voittanut mm. Finlandia-palkinnon romaanillaan Missä kuljimme kerran (2006).</p><p><br>Rikinkeltainen taivas<br>Rikinkeltainen taivas on intiimi ja musiikillinen matka, joka johtaa lapsuuden unenkaltaisesta kesäparatiisista 1960-luvulta sirpaleiseen nykymaailmaan, läpi toivon ja pettymysten täyttämien vuosikymmenten. Melankolian ja kauneuden läpäisemässä esityksessä sukupolvet, sukupuolet ja sosiaaliluokat törmäävät toisiinsa muistojen ja tosiasioiden kaleidoskoopissa.<br>Sekä Kjell Westön romaani että näytelmän käsikirjoitus käsittelevät pitkää ajanjaksoa vuodesta 1969 vuoteen 2016.</p><p><br>Rikinkeltainen taivas -näytelmän kantaesitys oli Kansallisteatterin Pienellä näyttämöllä 4.12.2019. Esityksen taltiointi on tehty Kansallisteatterin Suurella näyttämöllä helmikuussa 2021.</p><p><br>Työryhmä<br>K, kirjailija Timo Tuominen / Pyry Nikkilä</p><p>STELLA RABELL Annika Poijärvi</p><p>ALEX RABELL Juha Varis</p><p>LINDA VOGT / CLARA RABELL, Alexin ja Stellan äiti Pirjo Lonka</p><p>KRISTER ”KRIDE” TUOMINEN / PER-OLOF ”POA” RABELL, Alexin ja Stellan isoisä Johannes Purovaara</p><p>Lapset äänirooleissa Hilma Nieminen, Roope Nieminen, Olavi von Bagh </p><p>Ohjaus Juhana von Bagh</p><p>Dramatisointi Michael Baran</p><p>Romaanin suomennos Laura Beck</p><p>Koreografia Jyrki Karttunen</p><p>Lavastus Kati Lukka</p><p>Pukusuunnittelu Tarja Simone</p><p>Valosuunnittelu Ville Toikka</p><p>Äänisuunnittelu Tatu Nenonen</p><p>Videosuunnittelu Pyry Hyttinen</p><p>Naamioinnin suunnittelu Jari Kettunen</p><p>Ohjaajan assistentti Alise Polačenko</p><p>Esityksessä kuultava musiikki on kuultavissa Spotifyssa Rikinkeltainen taivas -soittolistalla.</p>"
            },
            "provider": {
                "fi": "Tapiolan kirjasto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7uya/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7u3e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T11:55:01.744560Z",
            "last_modified_time": "2022-09-22T11:55:01.744585Z",
            "date_published": null,
            "start_time": "2022-11-01T15:00:00Z",
            "end_time": "2022-11-01T17:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Akselisali"
            },
            "name": {
                "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi"
            },
            "short_description": {
                "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön."
            },
            "description": {
                "fi": "<p>Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön. Kansallisteatterin 150-vuotisen historian aikana on perinteisesti ollut tapana toteuttaa kiertueita ja vierailuesityksiä. Nyt teatterin peruskorjauksen ja koronahaasteiden vuoksi kiertue päätettiin toteuttaa digitaalisesti. Kjell Westön samannimiseen romaaniin pohjautuva ja Juhana von Baghin ohjaama digidraama on kaikkien kirjastojen käytettävissä veloituksetta.</p><p>Esitykset Espoon kirjastoissa:</p><p>torstai 13.10. klo 12 Ison Omenan kirjasto, stage</p><p>tiistai 1.11. klo 17 Sellon kirjasto, Akselisali</p><p>sunnuntai 6.11. klo 15 Ison Omenan kirjasto, stage</p><p>torstai 10.11. klo 17.30 Tapiolan kirjasto, Kaija-tila</p><p>lauantai 12.11. klo 15 Entressen kirjasto, Sininen huone</p><p>torstai 17.11. klo 17 Lippulaivan kirjasto, monitoimitila Salonki</p><p>Kirjailija Kjell Westö<br>Kirjailija Kjell Westö (s. 1961) on helsinkiläinen kirjailija. Rikinkeltainen taivas on hänen seitsemäs romaaninsa. Westö on voittanut mm. Finlandia-palkinnon romaanillaan Missä kuljimme kerran (2006).</p><p><br>Rikinkeltainen taivas<br>Rikinkeltainen taivas on intiimi ja musiikillinen matka, joka johtaa lapsuuden unenkaltaisesta kesäparatiisista 1960-luvulta sirpaleiseen nykymaailmaan, läpi toivon ja pettymysten täyttämien vuosikymmenten. Melankolian ja kauneuden läpäisemässä esityksessä sukupolvet, sukupuolet ja sosiaaliluokat törmäävät toisiinsa muistojen ja tosiasioiden kaleidoskoopissa.<br>Sekä Kjell Westön romaani että näytelmän käsikirjoitus käsittelevät pitkää ajanjaksoa vuodesta 1969 vuoteen 2016.</p><p><br>Rikinkeltainen taivas -näytelmän kantaesitys oli Kansallisteatterin Pienellä näyttämöllä 4.12.2019. Esityksen taltiointi on tehty Kansallisteatterin Suurella näyttämöllä helmikuussa 2021.</p><p><br>Työryhmä<br>K, kirjailija Timo Tuominen / Pyry Nikkilä</p><p>STELLA RABELL Annika Poijärvi</p><p>ALEX RABELL Juha Varis</p><p>LINDA VOGT / CLARA RABELL, Alexin ja Stellan äiti Pirjo Lonka</p><p>KRISTER ”KRIDE” TUOMINEN / PER-OLOF ”POA” RABELL, Alexin ja Stellan isoisä Johannes Purovaara</p><p>Lapset äänirooleissa Hilma Nieminen, Roope Nieminen, Olavi von Bagh </p><p>Ohjaus Juhana von Bagh</p><p>Dramatisointi Michael Baran</p><p>Romaanin suomennos Laura Beck</p><p>Koreografia Jyrki Karttunen</p><p>Lavastus Kati Lukka</p><p>Pukusuunnittelu Tarja Simone</p><p>Valosuunnittelu Ville Toikka</p><p>Äänisuunnittelu Tatu Nenonen</p><p>Videosuunnittelu Pyry Hyttinen</p><p>Naamioinnin suunnittelu Jari Kettunen</p><p>Ohjaajan assistentti Alise Polačenko</p><p>Esityksessä kuultava musiikki on kuultavissa Spotifyssa Rikinkeltainen taivas -soittolistalla.</p>"
            },
            "provider": {
                "fi": "Sellon kirjasto"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7u3e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7u7a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7ve4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T11:42:54.474555Z",
            "last_modified_time": "2022-09-22T11:42:54.474580Z",
            "date_published": null,
            "start_time": "2022-11-06T13:00:00Z",
            "end_time": "2022-11-06T15:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi"
            },
            "short_description": {
                "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön."
            },
            "description": {
                "fi": "<p>Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön. Kansallisteatterin 150-vuotisen historian aikana on perinteisesti ollut tapana toteuttaa kiertueita ja vierailuesityksiä. Nyt teatterin peruskorjauksen ja koronahaasteiden vuoksi kiertue päätettiin toteuttaa digitaalisesti. Kjell Westön samannimiseen romaaniin pohjautuva ja Juhana von Baghin ohjaama digidraama on kaikkien kirjastojen käytettävissä veloituksetta.</p><p>Esitykset Espoon kirjastoissa:</p><p>torstai 13.10. klo 12 Ison Omenan kirjasto, stage</p><p>tiistai 1.11. klo 17 Sellon kirjasto, Akselisali</p><p>sunnuntai 6.11. klo 15 Ison Omenan kirjasto, stage</p><p>torstai 10.11. klo 17.30 Tapiolan kirjasto, Kaija-tila</p><p>lauantai 12.11. klo 15 Entressen kirjasto, Sininen huone</p><p>torstai 17.11. klo 17 Lippulaivan kirjasto, monitoimitila Salonki</p><p>Kirjailija Kjell Westö<br>Kirjailija Kjell Westö (s. 1961) on helsinkiläinen kirjailija. Rikinkeltainen taivas on hänen seitsemäs romaaninsa. Westö on voittanut mm. Finlandia-palkinnon romaanillaan Missä kuljimme kerran (2006).</p><p><br>Rikinkeltainen taivas<br>Rikinkeltainen taivas on intiimi ja musiikillinen matka, joka johtaa lapsuuden unenkaltaisesta kesäparatiisista 1960-luvulta sirpaleiseen nykymaailmaan, läpi toivon ja pettymysten täyttämien vuosikymmenten. Melankolian ja kauneuden läpäisemässä esityksessä sukupolvet, sukupuolet ja sosiaaliluokat törmäävät toisiinsa muistojen ja tosiasioiden kaleidoskoopissa.<br>Sekä Kjell Westön romaani että näytelmän käsikirjoitus käsittelevät pitkää ajanjaksoa vuodesta 1969 vuoteen 2016.</p><p><br>Rikinkeltainen taivas -näytelmän kantaesitys oli Kansallisteatterin Pienellä näyttämöllä 4.12.2019. Esityksen taltiointi on tehty Kansallisteatterin Suurella näyttämöllä helmikuussa 2021.</p><p><br>Työryhmä<br>K, kirjailija Timo Tuominen / Pyry Nikkilä</p><p>STELLA RABELL Annika Poijärvi</p><p>ALEX RABELL Juha Varis</p><p>LINDA VOGT / CLARA RABELL, Alexin ja Stellan äiti Pirjo Lonka</p><p>KRISTER ”KRIDE” TUOMINEN / PER-OLOF ”POA” RABELL, Alexin ja Stellan isoisä Johannes Purovaara</p><p>Lapset äänirooleissa Hilma Nieminen, Roope Nieminen, Olavi von Bagh </p><p>Ohjaus Juhana von Bagh</p><p>Dramatisointi Michael Baran</p><p>Romaanin suomennos Laura Beck</p><p>Koreografia Jyrki Karttunen</p><p>Lavastus Kati Lukka</p><p>Pukusuunnittelu Tarja Simone</p><p>Valosuunnittelu Ville Toikka</p><p>Äänisuunnittelu Tatu Nenonen</p><p>Videosuunnittelu Pyry Hyttinen</p><p>Naamioinnin suunnittelu Jari Kettunen</p><p>Ohjaajan assistentti Alise Polačenko</p><p>Esityksessä kuultava musiikki on kuultavissa Spotifyssa Rikinkeltainen taivas -soittolistalla.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7u7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7vby",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7ve4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T11:42:54.371942Z",
            "last_modified_time": "2022-09-22T11:42:54.371965Z",
            "date_published": null,
            "start_time": "2022-10-13T09:00:00Z",
            "end_time": "2022-10-13T11:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi"
            },
            "short_description": {
                "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön."
            },
            "description": {
                "fi": "<p>Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön. Kansallisteatterin 150-vuotisen historian aikana on perinteisesti ollut tapana toteuttaa kiertueita ja vierailuesityksiä. Nyt teatterin peruskorjauksen ja koronahaasteiden vuoksi kiertue päätettiin toteuttaa digitaalisesti. Kjell Westön samannimiseen romaaniin pohjautuva ja Juhana von Baghin ohjaama digidraama on kaikkien kirjastojen käytettävissä veloituksetta.</p><p>Esitykset Espoon kirjastoissa:</p><p>torstai 13.10. klo 12 Ison Omenan kirjasto, stage</p><p>tiistai 1.11. klo 17 Sellon kirjasto, Akselisali</p><p>sunnuntai 6.11. klo 15 Ison Omenan kirjasto, stage</p><p>torstai 10.11. klo 17.30 Tapiolan kirjasto, Kaija-tila</p><p>lauantai 12.11. klo 15 Entressen kirjasto, Sininen huone</p><p>torstai 17.11. klo 17 Lippulaivan kirjasto, monitoimitila Salonki</p><p>Kirjailija Kjell Westö<br>Kirjailija Kjell Westö (s. 1961) on helsinkiläinen kirjailija. Rikinkeltainen taivas on hänen seitsemäs romaaninsa. Westö on voittanut mm. Finlandia-palkinnon romaanillaan Missä kuljimme kerran (2006).</p><p><br>Rikinkeltainen taivas<br>Rikinkeltainen taivas on intiimi ja musiikillinen matka, joka johtaa lapsuuden unenkaltaisesta kesäparatiisista 1960-luvulta sirpaleiseen nykymaailmaan, läpi toivon ja pettymysten täyttämien vuosikymmenten. Melankolian ja kauneuden läpäisemässä esityksessä sukupolvet, sukupuolet ja sosiaaliluokat törmäävät toisiinsa muistojen ja tosiasioiden kaleidoskoopissa.<br>Sekä Kjell Westön romaani että näytelmän käsikirjoitus käsittelevät pitkää ajanjaksoa vuodesta 1969 vuoteen 2016.</p><p><br>Rikinkeltainen taivas -näytelmän kantaesitys oli Kansallisteatterin Pienellä näyttämöllä 4.12.2019. Esityksen taltiointi on tehty Kansallisteatterin Suurella näyttämöllä helmikuussa 2021.</p><p><br>Työryhmä<br>K, kirjailija Timo Tuominen / Pyry Nikkilä</p><p>STELLA RABELL Annika Poijärvi</p><p>ALEX RABELL Juha Varis</p><p>LINDA VOGT / CLARA RABELL, Alexin ja Stellan äiti Pirjo Lonka</p><p>KRISTER ”KRIDE” TUOMINEN / PER-OLOF ”POA” RABELL, Alexin ja Stellan isoisä Johannes Purovaara</p><p>Lapset äänirooleissa Hilma Nieminen, Roope Nieminen, Olavi von Bagh </p><p>Ohjaus Juhana von Bagh</p><p>Dramatisointi Michael Baran</p><p>Romaanin suomennos Laura Beck</p><p>Koreografia Jyrki Karttunen</p><p>Lavastus Kati Lukka</p><p>Pukusuunnittelu Tarja Simone</p><p>Valosuunnittelu Ville Toikka</p><p>Äänisuunnittelu Tatu Nenonen</p><p>Videosuunnittelu Pyry Hyttinen</p><p>Naamioinnin suunnittelu Jari Kettunen</p><p>Ohjaajan assistentti Alise Polačenko</p><p>Esityksessä kuultava musiikki on kuultavissa Spotifyssa Rikinkeltainen taivas -soittolistalla.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vby/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7ve4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7u7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vby/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T11:42:53.682441Z",
            "last_modified_time": "2022-09-22T11:42:53.682464Z",
            "date_published": null,
            "start_time": "2022-10-13T09:00:00Z",
            "end_time": "2022-11-06T15:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi"
            },
            "short_description": {
                "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön."
            },
            "description": {
                "fi": "<p>Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön. Kansallisteatterin 150-vuotisen historian aikana on perinteisesti ollut tapana toteuttaa kiertueita ja vierailuesityksiä. Nyt teatterin peruskorjauksen ja koronahaasteiden vuoksi kiertue päätettiin toteuttaa digitaalisesti. Kjell Westön samannimiseen romaaniin pohjautuva ja Juhana von Baghin ohjaama digidraama on kaikkien kirjastojen käytettävissä veloituksetta.</p><p>Esitykset Espoon kirjastoissa:</p><p>torstai 13.10. klo 12 Ison Omenan kirjasto, stage</p><p>tiistai 1.11. klo 17 Sellon kirjasto, Akselisali</p><p>sunnuntai 6.11. klo 15 Ison Omenan kirjasto, stage</p><p>torstai 10.11. klo 17.30 Tapiolan kirjasto, Kaija-tila</p><p>lauantai 12.11. klo 15 Entressen kirjasto, Sininen huone</p><p>torstai 17.11. klo 17 Lippulaivan kirjasto, monitoimitila Salonki</p><p>Kirjailija Kjell Westö<br>Kirjailija Kjell Westö (s. 1961) on helsinkiläinen kirjailija. Rikinkeltainen taivas on hänen seitsemäs romaaninsa. Westö on voittanut mm. Finlandia-palkinnon romaanillaan Missä kuljimme kerran (2006).</p><p><br>Rikinkeltainen taivas<br>Rikinkeltainen taivas on intiimi ja musiikillinen matka, joka johtaa lapsuuden unenkaltaisesta kesäparatiisista 1960-luvulta sirpaleiseen nykymaailmaan, läpi toivon ja pettymysten täyttämien vuosikymmenten. Melankolian ja kauneuden läpäisemässä esityksessä sukupolvet, sukupuolet ja sosiaaliluokat törmäävät toisiinsa muistojen ja tosiasioiden kaleidoskoopissa.<br>Sekä Kjell Westön romaani että näytelmän käsikirjoitus käsittelevät pitkää ajanjaksoa vuodesta 1969 vuoteen 2016.</p><p><br>Rikinkeltainen taivas -näytelmän kantaesitys oli Kansallisteatterin Pienellä näyttämöllä 4.12.2019. Esityksen taltiointi on tehty Kansallisteatterin Suurella näyttämöllä helmikuussa 2021.</p><p><br>Työryhmä<br>K, kirjailija Timo Tuominen / Pyry Nikkilä</p><p>STELLA RABELL Annika Poijärvi</p><p>ALEX RABELL Juha Varis</p><p>LINDA VOGT / CLARA RABELL, Alexin ja Stellan äiti Pirjo Lonka</p><p>KRISTER ”KRIDE” TUOMINEN / PER-OLOF ”POA” RABELL, Alexin ja Stellan isoisä Johannes Purovaara</p><p>Lapset äänirooleissa Hilma Nieminen, Roope Nieminen, Olavi von Bagh </p><p>Ohjaus Juhana von Bagh</p><p>Dramatisointi Michael Baran</p><p>Romaanin suomennos Laura Beck</p><p>Koreografia Jyrki Karttunen</p><p>Lavastus Kati Lukka</p><p>Pukusuunnittelu Tarja Simone</p><p>Valosuunnittelu Ville Toikka</p><p>Äänisuunnittelu Tatu Nenonen</p><p>Videosuunnittelu Pyry Hyttinen</p><p>Naamioinnin suunnittelu Jari Kettunen</p><p>Ohjaajan assistentti Alise Polačenko</p><p>Esityksessä kuultava musiikki on kuultavissa Spotifyssa Rikinkeltainen taivas -soittolistalla.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7ve4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7vie",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7tzm/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2022-09-22T11:31:13.394159Z",
            "last_modified_time": "2022-09-22T11:31:13.394184Z",
            "date_published": null,
            "start_time": "2022-10-05T14:30:00Z",
            "end_time": "2022-10-05T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Ison_Omenan_kirjasto"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "name": {
                "fi": "Matinkylän Lauluilta"
            },
            "short_description": {
                "fi": "Tervetuloa laulamaan yhdessä Etelä-Espoon Eläkeläisten Musiikkikerho Elmuskan kanssa."
            },
            "description": {
                "fi": "<p>Tervetuloa laulamaan yhdessä Etelä-Espoon Eläkeläisten Musiikkikerho Elmuskan kanssa.</p><p>Lauluillat syksyllä keskiviikkoisin 7.9., 5.10., 2.11. ja 7.12.</p><p>Keskiviikkona 5.10. Tapio Rautavaaran jalanjäljillä:</p><p>Aimo Holtari, laulu ja Erkki Hepoaho, koskettimet</p><p>Elmuska laulattaa Marja Koskenalhon johdolla.</p><p>Väliajalla Matinkylä-Seura järjestää maksuttoman tarjoilun.</p><p></p>"
            },
            "provider": {
                "fi": "Matinkylä-Seura ja Etelä-Espoon Eläkeläiset"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vie/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7vla",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-22T10:59:40.522432Z",
            "last_modified_time": "2022-09-22T10:59:40.522465Z",
            "date_published": null,
            "start_time": "2022-10-04T13:00:00Z",
            "end_time": "2022-10-04T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Ison Omenan palvelutori"
            },
            "name": {
                "fi": "Harmaa hurmaa -lavarunotapahtuma senioreille"
            },
            "short_description": {
                "fi": "Harmaa hurmaa on erityisesti eläkeikäisille suunnattu tapahtuma, jossa lava on auki sanoittaa ilmoille kaikki se kamala ja ihana, joka meitä haastaa."
            },
            "description": {
                "fi": "<p>Ohjelma:<br>Klo 16-17 Runorata vasta-alkajille ja kokeilunhaluisille. Drop in -runopaja, jonne voit tulla yksin tai kaverin kanssa kokeilemaan runojen kirjoittamista helppojen ja hauskojen harjoitusten kautta.</p><p>Klo 17 näytelmä Toivon talo, jossa rakennetaan näyttämö yksinäisen vanhan miehen tarinaa varten. Käsikirjoitus ja ohjaus Jaana Lindfors. Näytelmän kesto noin 20 minuuttia.</p><p>Klo 17.30-18.30 Musiikkiesityksiä</p><p>Klo 18 Open mic lavarunousosuus alkaa.<br>Ilmoittaudu lukemaan omia runojasi joko ennakkoon jaanamarja.lindfors@gmail.com tai paikan päällä. Esiintyä voi yksin tai yhdessä. Aikaa varataan noin 5 minuuttia per esiintyjä.</p>"
            },
            "provider": {
                "fi": "Jaana Lindfors"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vla/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7voi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz654q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65wq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz664e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7agi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4934/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://www.facebook.com/events/2847588282052051?ref=newsfeed",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2022-08-10T12:04:06.003311Z",
            "last_modified_time": "2022-09-14T19:51:12.661443Z",
            "date_published": null,
            "start_time": "2022-09-15T13:30:00Z",
            "end_time": "2022-09-15T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://link.webropol.com/ep/helloespooevent150922",
                "en": "https://link.webropol.com/ep/helloespooevent150922"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sello kirjastossa, Leppävaarankatu 9, 02600 Espoo ja verkossa, Deal Room -alustalla ",
                "en": "Sello Library, Leppävaarankatu 9, 02600 Espoo & Deal Room virtual platform "
            },
            "name": {
                "fi": "Hello Espoo tapahtuma 15.09.2022",
                "en": "Hello Espoo event 15.09.2022"
            },
            "short_description": {
                "fi": "Hello Espoo on tapahtuma, jossa voit tutustua tarkemmin Espoon palveluihin ja harrastusmahdollisuuksiin sekä tavata Espoon kaupungin edustajia.",
                "en": "The Hello Espoo event an informative event  where Espoo residents and their families can learn more about various services and activities available in Espoo."
            },
            "description": {
                "fi": "<p>Asutko Espoossa? Oletko juuri muuttanut tai muuttamassa Espooseen? Tiedätkö lisää Espoon palveluista ja tarjolla olevasta toiminnasta?</p><p>Tervetuloa viidenteen Hello Espoo -tapahtumaan 15.9.2022! Hello Espoo on kahdesti vuodessa järjestettävä vapaamuotoinen tapahtuma, jossa voit tutustua tarkemmin Espoon palveluihin ja harrastusmahdollisuuksiin sekä tavata Espoon kaupungin edustajia. Tapahtumassa on myös musiikkiesityksiä, puhujia, kahvitarjoilu sekä työpaja lapsille.</p><p>MILLOIN?<br>Päivämäärä: Torstai 15.9.2022<br>Aika: 16:30–18:30<br>Paikka: Sello kirjastossa, Leppävaarankatu 9, 02600 Espoo ja verkossa, Deal Room -alustalla <br>Tapahtuma on maksuton, mutta ilmoittautuminen vaaditaan.</p><p> Ilmoittaudu viimeistään 10.9.2022. Ilmoittautuminen Hello Espoo -tapahtumaan on päättynyt.</p><p>MITÄ?<br>Tapahtuma järjestetään Sellon kirjastossa sekä Deal Room -alustalla suomeksi,  englanniksi, ukrainaiksi, vietnamiksi ja venäjäksi  Sellon kirjastossa on kahvitarjoilu. Ennen 10.9.2022 ilmoittautuneiden kesken arvomme kaksi 15€ lahjakorttia Marian Konditoria kahvila. Voittajat julkistetaan Sellon kirjastossa ja Deal Roomissa.</p><p>Tapahtuman ohjelma: <br>16:00- 16:30\t                    Ilmoittautuminen ja kahvitarjoilu / Sello kirjastossa<br>16:30-17:00                        Musiikkiesityksiä &amp; Tapahtuman avajaiset / Sello kirjastossa<br>•\tBao Vu Hoang – pianoesitys Juvenalia Music Institutesta<br>•\tVenezuelalainen laulaja Nathaly Gómez ja perulainen multi-instrumentalisti ja musiikkitutkija Camilo Pajuelo, International School of Music<br>17:00- 17:30                        Espoon puheenvuoro / Sello kirjastossa<br>•\t\"Tervetuloa Espooseen, Espoo 50 vuotta kaupunkina\", Milla Ovaska, Espoon kaupungin kansainvälisten asioiden päällikkö (video)<br>•\t\"Hello Espoo Info\", Abir Khan, Palveluneuvoja<br>17:30-18:30\t                    Minimessut: Espoon kaupungin palveluiden ja järjestöjen esittelyt / Sello kirjastossa<br>•\t Työllisyys- ja urakehityspalvelut: Korkeakoulutettujen maahanmuuttajien osaamiskeskus (FI, EN), Career counseling (FI, EN), Career Club (FI, EN, FR), EntryPoint Mentorointiohjelma (FI, EN, KO)<br>•\tHello Espoo Info (FI, EN, FR, DE, RU) <br>•\tTerveyspalveluja (FI, EN) <br>•\tSosiaalipalvelut (FI, EN) <br>•\tKoulutus: Varhaiskasvatus (FI, EN) International school of Music, Finland (FI, EN, ES)  Omnia ammattikoulu &amp; Työväenopisto (FI, EN) Kulttuuriohjaus koulussa (FI, EN, AR, SO, ES, FR, ZH)<br>•\tHarrastukset: Liikuntapalvelut (FI, EN), Nuorisopalvelut (FI, EN), KulttuuriEspoo (FI, EN). Kulttuuri ja Tapahtuma (FI, SV, EN, DE), KAMU museo (FI, EN), Kirjasto (FI, EN) Visit Espoo (FI, EN)<br>•\tOsallisuus Espoo (FI, EN)<br>•\tEspoolaisten järjestöjen toiminta (FI, EN) Järjestöjen toiminta (FI, EN), Family Ry (FI, EN), Mannerheimin Lastensuojeluliitto Uudenmaan piiri Ry (FI, EN)<br>17:30-18:30\t                    Työpajoja perheille ja lapsille/ Sello kirjastossa<br>•\tVauvat 0-6v.: leikkipaikka, piano matto, lukukirjoja/ Lasten leikkipaikka<br>•\tLapset 3-10v.: piirtäminen / Hauska Paikka<br>•\to Lapset 10-12v.: Läksykerho   3.-4. luokkalaiset - Reformative Society/ Jaminurkka<br>•\t10-18-vuotiaat nuoret: - biljardipöytä, Playstation, Nintendo Switch, 6 pelitietokonetta, pöytäjalkapallo, osajalkapallo, shakkilauta ja monet muut lautapelit/ Pointti<br>•\tAikuiset: Lautapelikerho - Lautapeliseura / Akseli-Sali <br>17:30-18:30:                           Musiikkiesitys: Pianisti Mindaugas Neverovas, pianoesitys, ISM Finland<br>18:30\t                      Tapahtuman päättyy</p><p><br>KUKA JÄRJESTÄÄ?<br>Tapahtuman järjestämisestä vastaa Elinvoiman tulosalueen Talent Espoo -tiimi yhdessä maahanmuuttajien neuvontapiste sekä muu Espoon kaupungin yksikköä ja ISM Suomi, Reformative Society, Lautapeliseura sekä HeiTech Oy. </p><p>Talent Espoo on Espoon vastaus kansallisen Talent Boost -ohjelman poikkihallinnolliseen toimeenpanoon. Talent Espoon toimintaa rahoittaa työ- ja elinkeinoministeriö.</p><p>HALUATKO LISÄTIETOJA?<br>Otathan yhteyttä Nga Phaniin osoitteessa nga.phan@espoo.fi, Koordinaattori Elinvoiman tulosalue, Elinkeino ja työllisyys yksiköstä. <br></p>",
                "en": "<p>Do you live in Espoo, have you just moved to Espoo or are you planning to move to Espoo? Welcome to the 5th Hello Espoo Event 15.9.2022 at 16:30-18:30 to find out about the different services the city offers. You can also ask us everything about your hometown (or future hometown), Espoo. There are keynotes, music performances and activities for you &amp; your family during the event.</p><p>Join the Hello Espoo event wherever you are! The event will be held at Sello Library (Leppävaarankatu 9, 02600 Espoo) in many languages and will also be run online on the Deal Room platform in Finnish, English, Ukrainian, Vietnamese, Russian. Coffee vouchers will be served only at Sello Library.</p><p>From all registrations before 10.9.2022, we will pick two winners for two 15€ vouchers to Café  Marian Konditoria in Espoo. The winners will be announced at Sello Library and Deal Room.</p><p>Date: Thursday 15.9.2022<br>Time: 16:30–18:30<br>Venue: Sello Library, Leppävaarankatu 9, 02600 Espoo &amp; Deal Room virtual platform <br>Cost: Free of charge<br>Please register here by 10.9.2022. The registration for the Hello Espoo Event has been closed.</p><p>PROGRAM:<br>•\t16:00-16.30             Welcome guests, registration &amp; coffee vouchers/ Entrance lounge<br>•\t16:30-17:00             Warm up music performances/ Sello Stage<br>•\t Bao Vu Hoang - 8 years-old pianist from Juvenalia Music Institute<br>•\tVenezuelan singer Nathaly Gómez and Peruvian multi-instrumentalist and musicologist Camilo Pajuelo from International School of Music, Finland<br>•\t17.00-17.10            Welcome words/ Sello Stage<br>•\t17:10-17:30            Keynote / Sello Stage<br>•\t \"Welcome to Espoo, 50 years as a city\" - Milla Ovaska, Head of International Affairs (video)<br>•\t  \" Hello Espoo Info\" - Abir Khan, Service advisor <br>•\t17.30-18.30           MINI FAIR – Espoo services &amp; organizations/ Sello Lounge<br>\tEmployment and career development services: Competence center for highly educated immigrant (FI, EN) , Career counseling (FI, EN) , Career Club (FI, EN, FR) , EntryPoint Mentoring program  (FI, EN, KO)<br>\tHello Espoo Info (FI, EN, FR, DE, RU) <br>\tHealth Care (FI, EN) <br>\tSocial services (FI, EN) <br>\tEducation: Early Childhood Education (FI, EN), International school of Music, Finland (FI, EN, ES) Espoo International School (FI, EN), Omnia Vocational education, Espoo Adult Education Centre (FI, EN), Cultural Guidance at School (FI, EN, AR, SO, ZH, FR)<br>\tHobbies and free time activities: Sports service (FI, EN), Youth service (FI, EN) KAMU Museum (FI, EN), Culture Espoo (FI, EN), The Event and Cultural Services (FI, SV, EN, DE) Library (FI, EN), Visit Espoo (FI, EN)<br>\tCitizen Participation (FI, EN) <br>\tActivities offered by non-governmental organizations in Espoo:  NGOs activities (FI, EN), Family Ry (FI, EN, ES), MLL Ry (FI, EN)<br>•\t17.30-18.30         Activities for families &amp; kids &amp; music background/ Sello Library<br>\tBabies 0-6 years old: Playground, piano mat, reading books/ Children playground<br>\tChildren 3-10 years old: Colouring &amp; computer games / Fun Place   <br>\tChildren 10-12 years old: Homework club for 3.-4. graders/ Reformative Society/ Jaminurkka<br>\tYoung people 10-18 years old: A pool table, Playstation, Nintendo Switch, 6 game computers, table football, subsoccer, chess board and many other board games/ Pointti <br>\tAdults: Board Game Club - Lautapeliseura / Akseli-Sali  <br>•\t17.30-18.30          Music performance: Pianist Mindaugas Neverovas, piano performance, ISM Finland<br>•\t18.30                        Closing words</p><p>The event is organised by the Talent Espoo team of the City Vitality Sector together with Information Point for Immigrants and other units of City of Espoo as well as International School of Music, Finland, Reformative Society, Lautapeliseura and HeiTech Company.  </p><p>Talent Espoo is the City’s cross-sectoral approach to the national Talent Boost -program. The activities are funded by the Ministry of Employment and Economy.</p><p>QUESTIONS?<br>Please contact Nga Phan,  Coordinator of Economic Development and Employment, nga.phan@espoo.fi , +358 40 505 8380</p><p></p>"
            },
            "provider": {
                "fi": " Elinvoiman tulosalueen Talent Espoo -tiimi yhdessä maahanmuuttajien neuvontapiste sekä muu Espoon kaupungin yksikköä. ",
                "en": "The Talent Espoo team of the City Vitality Sector together with Information Point for Immigrants and other units of City of Espoo.  "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7voi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7vru",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2022-09-14T11:31:42.319687Z",
            "last_modified_time": "2022-09-14T11:31:42.319712Z",
            "date_published": "2022-09-14T11:26:00Z",
            "start_time": "2022-10-04T13:00:00Z",
            "end_time": "2022-10-04T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": null,
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "name": {
                "fi": "Harmaa hurmaa -lavarunotapahtuma senioreille"
            },
            "short_description": {
                "fi": "Harmaa hurmaa on erityisesti eläkeikäisille suunnattu tapahtuma, jossa lava on auki sanoittaa ilmoille kaikki se kamala ja ihana, joka meitä haastaa. "
            },
            "description": {
                "fi": "<p>Ohjelma:<br>Klo 16-17 Runorata vasta-alkajille ja kokeilunhaluisille. Drop in -runopaja, jonne voit tulla yksin tai kaverin kanssa kokeilemaan runojen kirjoittamista helppojen ja hauskojen harjoitusten kautta.</p><p>Klo 17 näytelmä Toivon talo, jossa rakennetaan näyttämö yksinäisen vanhan miehen tarinaa varten. Käsikirjoitus ja ohjaus Jaana Lindfors. Näytelmän kesto noin 20 minuuttia.</p><p>Klo 17.30-18.30 Musiikkiesityksiä</p><p>Klo 18 Open mic lavarunousosuus alkaa.<br>Ilmoittaudu lukemaan omia runojasi joko ennakkoon jaanamarja.lindfors@gmail.com tai paikan päällä. Esiintyä voi yksin tai yhdessä. Aikaa varataan noin 5 minuuttia per esiintyjä.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vru/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agggfz7vuu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_facebook",
                    "link": "https://fb.me/e/2Om4w9nA7",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2022-06-17T13:22:32.548066Z",
            "last_modified_time": "2022-06-23T12:53:59.485024Z",
            "date_published": "2022-06-17T13:30:00Z",
            "start_time": "2022-06-23T10:00:00Z",
            "end_time": "2022-06-23T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "https://www.espoo.fi/fi/kulttuuriespoo-kulttuuritarjonta-samassa-osoitteessa/espoonlahden-tapahtumat-ja-kulttuuri",
                "sv": "https://www.espoo.fi/sv/kulttuuriespoo-kulttuuritarjonta-samassa-osoitteessa/evenemang-och-kultur-i-esboviken",
                "en": "https://www.espoo.fi/en/kulttuuriespoo-kulttuuritarjonta-samassa-osoitteessa/events-and-culture-espoonlahti"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Solmutori, Lippulaiva",
                "sv": "Knoptorget, Lippulaiva",
                "en": "Solmutori, Lippulaiva"
            },
            "name": {
                "fi": "Espoonlahden juhannusetkot",
                "sv": "Esbovikens midsommarförfest",
                "en": "Espoonlahti's Pre-Midsummer"
            },
            "short_description": {
                "fi": "Keskikesän huumaa Solmutorilla",
                "sv": "Midsommarförfest på Knoptorget",
                "en": "Midsummer fun in Solmutori"
            },
            "description": {
                "fi": "<p>Espoonlahden juhannusetkot ottavat riehakkaan varaslähdön keskikesän juhlaan torstaina 23. kesäkuuta klo 13–20! </p><p>Kaupungin tapahtuma- ja kulttuuripalveluiden, Lippulaivan kauppakeskuksen sekä Lippulaivan kirjaston järjestämä tapahtuma tuo Lippulaivan kauppakeskuksen Solmutorille hauskaa ja kesäistä ohjelmaa joka lähtöön. </p><p>Luvassa muun muassa ulkoilmakaraokea klo 15–20, Lippulaivan kauppakeskuksen tarjoama juhannussauna klo 14–17 ja pihapelejä klo 13–17 sekä kesäinen seppeletyöpaja Lippulaivan kirjastossa klo 13–15.</p><p>Tapahtuma on maksuton ja kaikille avoin. </p>",
                "sv": "<p>Esbovikens midsommarförfest är en fartfylld tjuvstart på midsommarfirandet torsdag 23 juni kl. 1 3–20!   </p><p>Kom med och sjung in midsommaren med karaoke på Knoptorget i köpcentret Lippulaiva!</p><p>Programmet är gratis och öppet får alla. </p>",
                "en": "<p>Get a head start on Midsummer’s festivities at Espoonlahti’s Pre-Midsummer on Thursday 23 June at 1:00 pm – 8:00 pm at Lippulaiva's Solmutori! </p><p>Sing your heart out in outdoor karaoke (3:00 pm – 8:00 pm), play outdoor games  (1:00 pm – 5:00 pm) and enjoy a relaxing sauna (2:00 pm – 5:00 pm) brought to you by the Lippulaiva shopping center, and take part in Lippulaiva library's flower crown workshop (1:00 pm – 3:00 pm).</p><p>Free admission.</p>"
            },
            "provider": {
                "fi": "Tapahtuma- ja kulttuuripalvelut, Lippulaiva, Lippulaivan kirjasto",
                "sv": "Esbovikens evenemang och kultur, Lippulaiva, Lippulaivabibliotek",
                "en": "Events and culture, Lippulaiva, Lippulaiva library"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vuu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}