Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1188
https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1189", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=1187" }, "data": [ { "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, "info_url": null, "description": 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, "short_description": { "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta." }, "name": { "fi": "Soukan kamerat: Syysnäyttely digikuville 2022" }, "info_url": { "fi": "http://www.soukankamerat.net" }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta." }, "name": { "fi": "Soukan kamerat: Syysnäyttely digikuville 2022" }, "info_url": { "fi": "http://www.soukankamerat.net" }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Näyttelyssä on valokuvaharrastajien näyttelyyn valittuja valokuvia noin 50 kappaletta." }, "name": { "fi": "Soukan kamerat: Syysnäyttely digikuville 2022" }, "info_url": { "fi": "http://www.soukankamerat.net" }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön." }, "name": { "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi" }, "info_url": { "fi": "https://www.helmet.fi" }, "provider_contact_info": null, "location_extra_info": { "fi": "Monitoimitila Salonki" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön." }, "name": { "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi" }, "info_url": { "fi": "https://www.helmet.fi" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön." }, "name": { "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi" }, "info_url": { "fi": "https://www.helmet.fi" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumatila Kaija" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön." }, "name": { "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi" }, "info_url": { "fi": "https://www.helmet.fi" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akselisali" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön." }, "name": { "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi" }, "info_url": { "fi": "https://www.helmet.fi" }, "provider_contact_info": null, "location_extra_info": null, "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, "info_url": null, "description": 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, "short_description": { "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön." }, "name": { "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi" }, "info_url": { "fi": "https://www.helmet.fi" }, "provider_contact_info": null, "location_extra_info": null, "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, "info_url": null, "description": 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, "short_description": { "fi": "Kansallisteatteri tarjoaa 150-juhlavuotensa kunniaksi Rikinkeltainen taivas -teatteriesityksen syys-marraskuun ajan suomalaisten kirjastojen vapaaseen käyttöön." }, "name": { "fi": "Rikinkeltainen taivas -teatteriesityksen digitaltiointi" }, "info_url": { "fi": "https://www.helmet.fi" }, "provider_contact_info": null, "location_extra_info": null, "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, "info_url": null, "description": 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, "short_description": { "fi": "Tervetuloa laulamaan yhdessä Etelä-Espoon Eläkeläisten Musiikkikerho Elmuskan kanssa." }, "name": { "fi": "Matinkylän Lauluilta" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Ison_Omenan_kirjasto" }, "provider_contact_info": null, "location_extra_info": null, "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, "info_url": null, "description": 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, "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." }, "name": { "fi": "Harmaa hurmaa -lavarunotapahtuma senioreille" }, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Ison Omenan palvelutori" }, "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, "info_url": null, "description": 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, "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." }, "name": { "fi": "Hello Espoo tapahtuma 15.09.2022", "en": "Hello Espoo event 15.09.2022" }, "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 " }, "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ä & 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 & 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 & 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 & 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 & 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 & 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 & kids & music background/ Sello Library<br>\tBabies 0-6 years old: Playground, piano mat, reading books/ Children playground<br>\tChildren 3-10 years old: Colouring & 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, "info_url": null, "description": 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, "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. " }, "name": { "fi": "Harmaa hurmaa -lavarunotapahtuma senioreille" }, "info_url": null, "provider_contact_info": null, "location_extra_info": { "fi": "Stage" }, "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, "info_url": null, "description": 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, "short_description": { "fi": "Keskikesän huumaa Solmutorilla", "sv": "Midsommarförfest på Knoptorget", "en": "Midsummer fun in Solmutori" }, "name": { "fi": "Espoonlahden juhannusetkot", "sv": "Esbovikens midsommarförfest", "en": "Espoonlahti's Pre-Midsummer" }, "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" }, "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" }, { "id": "espoo_le:agggfz7vxu", "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: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:agggfz7woy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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" } ], "created_time": "2022-05-11T11:46:30.371216Z", "last_modified_time": "2022-06-10T06:28:00.442831Z", "date_published": "2022-05-10T21:00:00Z", "start_time": "2022-08-04T10:00:00Z", "end_time": "2022-08-04T12: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, "short_description": { "fi": "Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!", "sv": "Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!", "en": "Welcome to craft on Children's Thursdays in Children's Land from 1 pm to 3 pm!" }, "name": { "fi": "Askarrellaan kesä", "sv": "Sommarpyssel", "en": "Summer Craft Club" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askarrellaan_kesa(235218)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Sellobiblioteket/Evenemang/Sommarpyssel(235231)", "en": "https://www.helmet.fi/en-US/Events_and_tips/Events?s=Summer%20Craft%20Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Barnavdelning ", "en": "Children's Land" }, "description": { "fi": "<p>Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!</p><p>Otamme mielelläme aihe-ehdotuksia vastaan!</p><p>Askartelukerho on tarkoitettu ensisijaisesti koululaisille, mutta alle kouluikäiset lapset voivat osallistua kerhoon yhdessä vanhemman kanssa.</p><p>Kerhoon ei tarvitse ilmoittautua ennakkoon, vaan voit tulla milloin tahansa mukaan.</p><p>Kerho ja sen tarvikkeet ovat maksuttomia.</p><p>Kokoonnumme joka viikko 9.6.-4.8.2022.</p>", "sv": "<p>Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!</p><p>Vi tar gärna emot pyssel önskemål!</p><p>Pysselklubben är avsedd i första hand för barn i skolåldern, barn under skolåldern kan delta i pysselklubben tillsammans med en vuxen.</p><p>Man behöver inte anmäla sig till pysselklubben i förhand, kom med då det passar för dig.</p><p>Pysselklubben, samt materialet som används är gratis.</p><p>Vi pysslar varje torsdag under tiden 9.6.-4.8.2022.</p>", "en": "<p>Welcome to the Summer Craft Club, every Thursday during Summer between 13:00 and 15:00.</p><p>While the Summer Craft Club is mainly for school-aged children, but children under school-age are more than welcome participate together with a parent.</p><p>You do not need to register for the club in advance, and you can join at any time.</p><p>The Summer Craft Club and all materials are free of charge and are provided by the Library.</p><p>If you have anything special that you would like to do, then we are more than happy to accept ideas and suggestions.</p><p>We will meet every week starting from June 9 until August 4 2022.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7vxu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7v2u", "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: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:agggfz7woy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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" } ], "created_time": "2022-05-11T11:46:30.222151Z", "last_modified_time": "2022-06-10T06:28:00.399658Z", "date_published": "2022-05-10T21:00:00Z", "start_time": "2022-07-28T10:00:00Z", "end_time": "2022-07-28T12: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, "short_description": { "fi": "Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!", "sv": "Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!", "en": "Welcome to craft on Children's Thursdays in Children's Land from 1 pm to 3 pm!" }, "name": { "fi": "Askarrellaan kesä", "sv": "Sommarpyssel", "en": "Summer Craft Club" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askarrellaan_kesa(235218)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Sellobiblioteket/Evenemang/Sommarpyssel(235231)", "en": "https://www.helmet.fi/en-US/Events_and_tips/Events?s=Summer%20Craft%20Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Barnavdelning ", "en": "Children's Land" }, "description": { "fi": "<p>Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!</p><p>Otamme mielelläme aihe-ehdotuksia vastaan!</p><p>Askartelukerho on tarkoitettu ensisijaisesti koululaisille, mutta alle kouluikäiset lapset voivat osallistua kerhoon yhdessä vanhemman kanssa.</p><p>Kerhoon ei tarvitse ilmoittautua ennakkoon, vaan voit tulla milloin tahansa mukaan.</p><p>Kerho ja sen tarvikkeet ovat maksuttomia.</p><p>Kokoonnumme joka viikko 9.6.-4.8.2022.</p>", "sv": "<p>Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!</p><p>Vi tar gärna emot pyssel önskemål!</p><p>Pysselklubben är avsedd i första hand för barn i skolåldern, barn under skolåldern kan delta i pysselklubben tillsammans med en vuxen.</p><p>Man behöver inte anmäla sig till pysselklubben i förhand, kom med då det passar för dig.</p><p>Pysselklubben, samt materialet som används är gratis.</p><p>Vi pysslar varje torsdag under tiden 9.6.-4.8.2022.</p>", "en": "<p>Welcome to the Summer Craft Club, every Thursday during Summer between 13:00 and 15:00.</p><p>While the Summer Craft Club is mainly for school-aged children, but children under school-age are more than welcome participate together with a parent.</p><p>You do not need to register for the club in advance, and you can join at any time.</p><p>The Summer Craft Club and all materials are free of charge and are provided by the Library.</p><p>If you have anything special that you would like to do, then we are more than happy to accept ideas and suggestions.</p><p>We will meet every week starting from June 9 until August 4 2022.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7v2u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7v5q", "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: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:agggfz7woy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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" } ], "created_time": "2022-05-11T11:46:29.990514Z", "last_modified_time": "2022-06-10T06:28:00.357173Z", "date_published": "2022-05-10T21:00:00Z", "start_time": "2022-07-21T10:00:00Z", "end_time": "2022-07-21T12: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, "short_description": { "fi": "Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!", "sv": "Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!", "en": "Welcome to craft on Children's Thursdays in Children's Land from 1 pm to 3 pm!" }, "name": { "fi": "Askarrellaan kesä", "sv": "Sommarpyssel", "en": "Summer Craft Club" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askarrellaan_kesa(235218)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Sellobiblioteket/Evenemang/Sommarpyssel(235231)", "en": "https://www.helmet.fi/en-US/Events_and_tips/Events?s=Summer%20Craft%20Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Barnavdelning ", "en": "Children's Land" }, "description": { "fi": "<p>Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!</p><p>Otamme mielelläme aihe-ehdotuksia vastaan!</p><p>Askartelukerho on tarkoitettu ensisijaisesti koululaisille, mutta alle kouluikäiset lapset voivat osallistua kerhoon yhdessä vanhemman kanssa.</p><p>Kerhoon ei tarvitse ilmoittautua ennakkoon, vaan voit tulla milloin tahansa mukaan.</p><p>Kerho ja sen tarvikkeet ovat maksuttomia.</p><p>Kokoonnumme joka viikko 9.6.-4.8.2022.</p>", "sv": "<p>Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!</p><p>Vi tar gärna emot pyssel önskemål!</p><p>Pysselklubben är avsedd i första hand för barn i skolåldern, barn under skolåldern kan delta i pysselklubben tillsammans med en vuxen.</p><p>Man behöver inte anmäla sig till pysselklubben i förhand, kom med då det passar för dig.</p><p>Pysselklubben, samt materialet som används är gratis.</p><p>Vi pysslar varje torsdag under tiden 9.6.-4.8.2022.</p>", "en": "<p>Welcome to the Summer Craft Club, every Thursday during Summer between 13:00 and 15:00.</p><p>While the Summer Craft Club is mainly for school-aged children, but children under school-age are more than welcome participate together with a parent.</p><p>You do not need to register for the club in advance, and you can join at any time.</p><p>The Summer Craft Club and all materials are free of charge and are provided by the Library.</p><p>If you have anything special that you would like to do, then we are more than happy to accept ideas and suggestions.</p><p>We will meet every week starting from June 9 until August 4 2022.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7v5q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7waq", "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: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:agggfz7woy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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" } ], "created_time": "2022-05-11T11:46:29.904021Z", "last_modified_time": "2022-06-10T06:28:00.315920Z", "date_published": "2022-05-10T21:00:00Z", "start_time": "2022-07-14T10:00:00Z", "end_time": "2022-07-14T12: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, "short_description": { "fi": "Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!", "sv": "Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!", "en": "Welcome to craft on Children's Thursdays in Children's Land from 1 pm to 3 pm!" }, "name": { "fi": "Askarrellaan kesä", "sv": "Sommarpyssel", "en": "Summer Craft Club" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askarrellaan_kesa(235218)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Sellobiblioteket/Evenemang/Sommarpyssel(235231)", "en": "https://www.helmet.fi/en-US/Events_and_tips/Events?s=Summer%20Craft%20Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Barnavdelning ", "en": "Children's Land" }, "description": { "fi": "<p>Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!</p><p>Otamme mielelläme aihe-ehdotuksia vastaan!</p><p>Askartelukerho on tarkoitettu ensisijaisesti koululaisille, mutta alle kouluikäiset lapset voivat osallistua kerhoon yhdessä vanhemman kanssa.</p><p>Kerhoon ei tarvitse ilmoittautua ennakkoon, vaan voit tulla milloin tahansa mukaan.</p><p>Kerho ja sen tarvikkeet ovat maksuttomia.</p><p>Kokoonnumme joka viikko 9.6.-4.8.2022.</p>", "sv": "<p>Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!</p><p>Vi tar gärna emot pyssel önskemål!</p><p>Pysselklubben är avsedd i första hand för barn i skolåldern, barn under skolåldern kan delta i pysselklubben tillsammans med en vuxen.</p><p>Man behöver inte anmäla sig till pysselklubben i förhand, kom med då det passar för dig.</p><p>Pysselklubben, samt materialet som används är gratis.</p><p>Vi pysslar varje torsdag under tiden 9.6.-4.8.2022.</p>", "en": "<p>Welcome to the Summer Craft Club, every Thursday during Summer between 13:00 and 15:00.</p><p>While the Summer Craft Club is mainly for school-aged children, but children under school-age are more than welcome participate together with a parent.</p><p>You do not need to register for the club in advance, and you can join at any time.</p><p>The Summer Craft Club and all materials are free of charge and are provided by the Library.</p><p>If you have anything special that you would like to do, then we are more than happy to accept ideas and suggestions.</p><p>We will meet every week starting from June 9 until August 4 2022.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7waq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7wdm", "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: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:agggfz7woy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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" } ], "created_time": "2022-05-11T11:46:29.818613Z", "last_modified_time": "2022-06-10T06:28:00.273604Z", "date_published": "2022-05-10T21:00:00Z", "start_time": "2022-07-07T10:00:00Z", "end_time": "2022-07-07T12: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, "short_description": { "fi": "Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!", "sv": "Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!", "en": "Welcome to craft on Children's Thursdays in Children's Land from 1 pm to 3 pm!" }, "name": { "fi": "Askarrellaan kesä", "sv": "Sommarpyssel", "en": "Summer Craft Club" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askarrellaan_kesa(235218)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Sellobiblioteket/Evenemang/Sommarpyssel(235231)", "en": "https://www.helmet.fi/en-US/Events_and_tips/Events?s=Summer%20Craft%20Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Barnavdelning ", "en": "Children's Land" }, "description": { "fi": "<p>Tervetuloa askartelemaan kesätorstaisin Lastenmaahan klo 13-15!</p><p>Otamme mielelläme aihe-ehdotuksia vastaan!</p><p>Askartelukerho on tarkoitettu ensisijaisesti koululaisille, mutta alle kouluikäiset lapset voivat osallistua kerhoon yhdessä vanhemman kanssa.</p><p>Kerhoon ei tarvitse ilmoittautua ennakkoon, vaan voit tulla milloin tahansa mukaan.</p><p>Kerho ja sen tarvikkeet ovat maksuttomia.</p><p>Kokoonnumme joka viikko 9.6.-4.8.2022.</p>", "sv": "<p>Välkommen och pyssla till Sellobibliotekets barnavdelning under sommartorsdagar kl.13-15!</p><p>Vi tar gärna emot pyssel önskemål!</p><p>Pysselklubben är avsedd i första hand för barn i skolåldern, barn under skolåldern kan delta i pysselklubben tillsammans med en vuxen.</p><p>Man behöver inte anmäla sig till pysselklubben i förhand, kom med då det passar för dig.</p><p>Pysselklubben, samt materialet som används är gratis.</p><p>Vi pysslar varje torsdag under tiden 9.6.-4.8.2022.</p>", "en": "<p>Welcome to the Summer Craft Club, every Thursday during Summer between 13:00 and 15:00.</p><p>While the Summer Craft Club is mainly for school-aged children, but children under school-age are more than welcome participate together with a parent.</p><p>You do not need to register for the club in advance, and you can join at any time.</p><p>The Summer Craft Club and all materials are free of charge and are provided by the Library.</p><p>If you have anything special that you would like to do, then we are more than happy to accept ideas and suggestions.</p><p>We will meet every week starting from June 9 until August 4 2022.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7wdm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 23795, "next": "