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
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
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/?format=api&page=1234
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1235", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1233" }, "data": [ { "id": "helmet:260534", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8158/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:09.862678Z", "last_modified_time": "2024-02-06T13:38:39.450870Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B92373FF-BD23-428F-B5E2-D3E9EC134C70}/93620", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2791/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:38:39.059762Z", "last_modified_time": "2023-10-24T06:23:29.785114Z", "date_published": "2022-12-12T22:00:00Z", "start_time": "2023-09-23T08:00:00Z", "end_time": "2023-09-23T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Munkan kirjastossa virittäydytään taas tarinoiden taajudelle, kun satutuokio pyörähtää käyntiin tuttuun tapaan lauantaina klo 11:00. Satutuokio on suunnattu erityisesti 3 - 6-vuotiaille, mutta kaikki sadunnälkäiset ovat tottakai tervetulleita kuuntelemaan!</p>" }, "name": { "fi": "Satutuokio lauantaisin" }, "short_description": { "fi": "Tervetuloa virittäytymään tarinoiden taajuudelle!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267626", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8177/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10829/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3854, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-04T10:28:58.256383Z", "last_modified_time": "2023-09-04T10:28:58.256409Z", "name": "", "url": "https://www.helmet.fi/download/noname/{2F7E7540-BA66-4C7A-B34A-D0CB5E90A729}/105522", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3854/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-04T10:28:58.117166Z", "last_modified_time": "2023-10-24T06:23:29.685481Z", "date_published": "2023-09-04T08:51:00Z", "start_time": "2023-09-23T07:30:00Z", "end_time": "2023-09-23T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Sukelletaan satujen maailmaan helppojen joogaliikkeiden saattelemana.</p><p>Tunti on suunnattu 3-6-vuotialle ja heidän aikuiselleen. (Huom. näissä tuokioissa myös aikuiset osallistuvat!)</p><p>Voit ilmoittautua mukaan Oulunkylän kirjastossa tai sähköpostilla iri.myller@hel.fi.</p><p>Kuva: pixabay.com / RealMotion</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>" }, "name": { "fi": "Satujoogaa perheille" }, "short_description": { "fi": "Tervetuloa 3-6-vuotiaat ja heidän aikuisensa satujen maailmaan helppojen joogaliikkeiden saattelemana! Ilmoittaudu mukaan!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267626/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60302", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3425630", "sv": "https://www.lippu.fi/eventseries/name-3425630", "en": "https://www.lippu.fi/eventseries/name-3425630" }, "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4072, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:10.572420Z", "last_modified_time": "2023-09-07T14:20:10.572441Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734715.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4072/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:10.413776Z", "last_modified_time": "2023-10-23T20:13:27.708819Z", "date_published": null, "start_time": "2023-08-24T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DE86F24F883FCD8ECAF6CE43E13B69E0/Adventures_of_Harriharri_Episode_III_", "sv": "http://www.caisa.fi/sv/evenemang/event/DE86F24F883FCD8ECAF6CE43E13B69E0/Adventures_of_Harriharri_Episode_III_", "en": "http://www.caisa.fi/en/events/event/DE86F24F883FCD8ECAF6CE43E13B69E0/Adventures_of_Harriharri_Episode_III_" }, "description": { "fi": "<p>Videopeliesityksessä Harriharri taistelee sosiaalisen syrjäyttämisen voimia vastaan integroituakseen suomalaiseen yhteiskuntaan.</p><p>Esitys seuraa Harriharrin elämää Helsingissä. Pelin päähahmo Harriharri on juuri saapunut Suomeen ja toivoo saavansa uusia ystäviä sekä lämpimän vastaanoton uuteen kulttuuriin. Harriharri luottaa itseensä ja motivaatioonsa toimia myös osana paikallista taidemaailmaa. Kaikki ei kuitenkaan mene niin kuin Strömsössä. <br> <br>Pelissä Harriharri joutuu tutustumaan suomalaiseen kulttuuri- ja maahanmuuttopolitiikkaan hämmentävillä tavoilla, jotka murskaavat hänen naiivin kuvansa Suomesta. Ponnisteluistaan huolimatta hän kohtaa jatkuvia vastoinkäymisiä pyrkiessään suomalaisen yhteiskunnan jäseneksi.</p><p>Pelin vaikeimmilla tasoilla Harriharrin täytyy taistella byrokraattista koneistoa ja sosiaalisen syrjäyttämisen rakenteita vastaan improvisoidun rapin ja laulun keinoin. Jokainen esitys on uniikki monipelaajakokemus, sillä yleisö voi vaikuttaa pelin kulkuun. Liity Harriharrin seuraan hiphopfantasiaseikkailuun! <br> <br>Kävi miten kävi, Harriharri ei saa luovuttaa! <br> <br>Pelisuunnittelija ja esittäjä: Harold Hejazi <br>Pelinkehittäjät: magu & Rolands Tīss <br>Säveltäjä ja äänisuunnittelija: Eliel Tammiharju <br>Videoteknikko: Jokke Heikkilä <br> <br>Sisältöhuomautukset: Esitys sisältää voimakkaita valoja ja värejä sekä karkeaa kielenkäyttöä. Esitys kertoo rasismista, ei välttämättä sovi herkille katsojille. <br> <br>Harriharri on osa Suomen tarinat -hanketta, jossa tutkitaan suomalaista historiakulttuuria, millaisia narratiiveja Suomen historiasta kerrotaan, miten niiden sisällöstä on neuvoteltu ja millaisia merkityksiä kansalaiset näille kertomuksille asettavat. Suomen tarinat -projektin rahoittaa Koneen Säätiö ja sen kotipaikka on Helsingin yliopiston poliittisen historian oppiaine. Hanke aloitti toukokuussa 2021 ja on kolmivuotinen. <br> <br>Esityksen kesto: n. 60 min <br>Kieli: englanti <br>Ikäsuositus/ikäraja: +12-v <br> <br>Esitys on alun perin tuotettu Nykyesityksen näyttämölle, ja sitä tuki Taiteen edistämiskeskus.</p><p>Pysy kuulolla ja ota seurantaan @harriharrigame Instagramissa!</p><p>Katso aiemmat osat täältä: <br>Jakso I: https://youtu.be/VAMZKqDMoKA <br>Jakso II: https://youtu.be/FP8Of8MNT_I</p>", "sv": "<p>I videospelsutställningen kämpar Harriharri mot den sociala utslagningens krafter för att integreras i det finländska samhället.</p><p>Utställningen följer Harriharris liv i Helsingfors. Spelets huvudkaraktär Harriharri har nyligen anlänt till Finland och önskar sig nya vänner samt ett varmt mottagande i den nya kulturen. Harriharri tvingas bekanta sig med den finska kultur- och migrationspolitiken på förbryllande sätt, som krossar hans naiva bild av Finland.<br>På spelets svårare nivåer måste Harriharri kämpa mot det byråkratiska maskineriet och den sociala utslagningens strukturer med improviserad rap och sång. Varje föreställning är en unik flerspelarupplevelse, eftersom publiken kan påverka spelets gång. Anslut dig till Harriharris hiphopfantasiäventyr!</p><p>Anmärkningar om innehållet: Föreställningen har starka ljus och färger, grovt språkbruk och rasistiska referenser. <br> <br>Harriharri är en del av projektet Finlands berättelser, i vilket man undersöker den finländska historiekulturen, hurdana narrativ som berättas om Finlands historia, hur deras innehåll har förhandlats och hurdana betydelser medborgarna ger dessa berättelser. Finlands berättelser finansieras av Konestiftelsen och dess hemort är politisk historia vid Helsingfors universitet. Projektet inleddes i maj 2021 och varar i tre år.</p><p>Längd: ca. 60 min.<br>Språk: engelska<br>Åldersrekommendation: +12</p>", "en": "<p>A video game performance. Harriharri battles the forces of social exclusion in order to integrate into Finnish society.</p><p>This video game performance chronicles the life and times of Harriharri living in Helsinki. Harriharri is a newcomer to Finland who arrives with high hopes of being warmly welcomed into the culture and making new friends. He feels confident and full of initiative to contribute to the local artistic landscape. However, it doesn’t turn out quite like in Strömsö. <br> <br>Through gameplay, Harriharri undergoes an unsettling introduction to Finnish cultural politics, one that shatters his naïve image of Finland. Despite his sincere efforts, he faces continuous obstacles in pursuit of integrating into Finnish society. In order to conquer the most challenging levels of the game, Harriharri must battle bureaucracies and systemic forces of social exclusion. <br> <br>No matter what, Harriharri must not give up! <br> <br>The game is performed live in an interactive-cinema format and narrated through rap and song. In this multiplayer experience, the audience’s decisions influence the narrative––making each performance unique. Join Harriharri on this hip hop fantasy adventure! <br> <br>Creator and Performer: Harold Hejazi <br>Game Developers: magu & Rolands Tīss <br>Composer and Sound Designer: Eliel Tammiharju <br>Video Technician: Jokke Heikkilä</p><p>Duration: 60 min<br>Age recommendation: 12+<br>Language: English<br> <br>This performance was originally produced by Stage for Contemporary Performance and supported by Arts Promotion Center Finland. <br> <br>Watch the previous episodes here: <br>Episode I: https://youtu.be/VAMZKqDMoKA <br>Episode II: https://youtu.be/FP8Of8MNT_I <br> <br>Follow @harriharrigame to stay updated <br> <br>Content Warning: This performance explores issues of race and immigration and uses strong or coarse language that may be considered offensive to some viewers. The on-screen visuals include flashing lights and colours that may trigger seizures. <br> <br>Harold Hejazi, who Fennicised his name in 2020 to Harriharri, is a Canadian artist and game designer currently living in Helsinki. In recent years, he has been using the medium of video games for live cinematic storytelling that examines issues of race, marginalisation, and contemporary multiculturalism in Finland.</p>" }, "name": { "fi": "Adventures of Harriharri – Episode III – Suomen Tarinat", "sv": "Adventures of Harriharri – Episode III", "en": "Adventures of Harriharri – Episode III" }, "short_description": { "fi": "Videopeliesityksessä Harriharri taistelee sosiaalisen syrjäyttämisen voimia vastaan integroituakseen suomalaiseen yhteiskuntaan.", "sv": "I videospelsutställningen kämpar Harriharri mot den sociala utslagningens krafter för att integreras i det finländska samhället.", "en": "A video game performance. Harriharri battles the forces of social exclusion in order to integrate into Finnish society." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60302/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60332", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4071, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:10.204600Z", "last_modified_time": "2023-09-07T14:20:10.204622Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734782.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4071/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:10.060473Z", "last_modified_time": "2023-10-23T20:13:27.638682Z", "date_published": null, "start_time": "2023-08-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4C50E5DAB29BECC4C48086436C7BEF07/Hasse_Walli_Power_Trio_Hasse_Walli_75_vuotta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4C50E5DAB29BECC4C48086436C7BEF07/Hasse_Walli_Power_Trio_Hasse_Walli_75_ar_", "en": "http://www.vuotalo.fi/en/events/event/4C50E5DAB29BECC4C48086436C7BEF07/Hasse_Walli_Power_Trio_Hasse_Walli_75_Years" }, "description": { "fi": "<p>Yksi suomalaisen rockmusiikin pääarkkitehdeistä, Hasse Walli, täytti helmikuussa 75 vuotta. Juhlavuoden kunniaksi Vuotorilla on luvassa voimaannuttavaa bluesia.</p><p>Kitaristi Hasse Walli on Suomen rockkentän ehdottomia kulmakiviä. Hänen 1960-luvulla luotsaamansa Blues Section oli ensimmäisiä suomalaisyhtyeitä, joka täytti kansainväliseen läpilyömiseen vaadittavat laatukriteerit. Blues Sectionin ainoaksi jäänyt albumi vuodelta 1967 on hieno dokumentti ajanjaksosta, jolloin uusi sukupolvi muokkasi bluesperinteen uusiksi.</p><p>Hasse Walli Power Trio ilmentää vahvasti tuota 60-luvun lopulla syntynyttä henkeä. Ytimekkäästi nimetty yhtye esittää juuri sitä mitä ”powertriolta” on lupa odottaa: musiikkia, joka avoimesti viittaa Jimi Hendrix Experiencen ja Creamin viitoittamalle tielle ja joka perustuu muusikoiden suvereniteetille sekä kyvylle improvisoida.</p><p>Kokoonpano:<br>Hasse Walli, laulu & kitara<br>Jan-Olof Strandberg, basso<br>Jartsa Karvonen, rummut</p><p>Kesto n. 60 min<br>Vapaa pääsy</p>", "sv": "<p>En av den finländska rockmusikens huvudarkitekter, Hasse Walli, fyllde 75 år i februari.</p><p>Gitarristen Hasse Walli är en av de absoluta hörnstenarna för den finländska rockscenen. Blues Section, som han lotsade på 1960-talet, var ett av de första finländska banden som uppfyllde kvalitetskriterierna för ett internationellt genomslag. Hasse Walli Power Trio förmedlar kraftigt den anda som uppstår under sent 1960-tal.</p><p>Längd: ca. 60 min.</p>", "en": "<p>One of the main architects of Finnish rock music, Hasse walli, turned 75 in February.</p><p>The guitarist Hasse Walli is one of the absolute cornerstones of Finnish rock. Blues Section, which he led in the 1960s, was one of the first Finnish bands to meet the quality criteria for an international breakthrough. Hasse Walli Power Trio is a strong incarnation of the spirit dating back at the end of the 1960s.</p><p>Duration approx 60 min</p>" }, "name": { "fi": "Hasse Walli Power Trio: Hasse Walli 75 vuotta – Elokuun iltasoitto", "sv": "Hasse Walli Power Trio: Hasse Walli 75 år – Kvällspel i augusti", "en": "Hasse Walli Power Trio: Hasse Walli 75 Years" }, "short_description": { "fi": "Yksi suomalaisen rockmusiikin pääarkkitehdeistä, Hasse Walli, täytti helmikuussa 75 vuotta. Juhlavuoden kunniaksi Vuotorilla on luvassa voimaannuttavaa bluesia.", "sv": "En av den finländska rockmusikens huvudarkitekter, Hasse Walli, fyllde 75 år i februari.", "en": "One of the main architects of Finnish rock music, Hasse walli, turned 75 in February." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60332/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60552", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4070, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:09.814263Z", "last_modified_time": "2023-09-07T14:20:09.814285Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731273.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4070/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:09.671820Z", "last_modified_time": "2023-10-23T20:13:27.574001Z", "date_published": null, "start_time": "2023-08-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B8F51703FE30977148185DE8F8AD950B/Open_stage_LUNK", "sv": "http://www.espanlava.fi/sv/evenemang/event/B8F51703FE30977148185DE8F8AD950B/Open_stage_LUNK", "en": "http://www.espanlava.fi/en/events/event/B8F51703FE30977148185DE8F8AD950B/Open_stage_LUNK" }, "description": { "fi": "<p>LUNK on nelihenkinen, rummut + basso + 2 x sähkis -kokoonpano, jonka tyyli pyörii popin ja rockin ympyröissä, kallistuen brittipopin, indierockin ja rock'n'rollin laitaan.</p><p>Bändillä on keikkakokemusta yli vuosikymmenen verran, erilaisissa tapahtumissa, baarin nurkasta isommille stageille. Meininki lavalla on nastalla pohjalla, satoi tai paistoi.</p>", "sv": "<p>LUNK är en ensemble på fyra personer med trummor, bas och två elgitarrer, vars stil kretsar kring pop och rock med betoning på brittisk pop, indie rock och rock’n'roll.</p><p>Bandet har över ett decennium av spelningserfarenhet från olika evenemang, från hörn av barer till större scener. Stämningen på scenen är toppen, både i regn eller solsken.</p>", "en": "<p>LUNK is a four-strong drum + bass + 2 x guitar band with a style that revolves around pop and rock, gravitating towards brit pop, indie rock and rock 'n' roll.</p><p>The band has over a decade of live experience at various events, from bar corners to larger stages. An uncompromising set full of energy regardless of rain or shine.</p>" }, "name": { "fi": "Open stage: LUNK", "sv": "Open stage: LUNK", "en": "Open stage: LUNK" }, "short_description": { "fi": "LUNK on nelihenkinen, rummut + basso + 2 x sähkis -kokoonpano, jonka tyyli pyörii popin ja rockin ympyröissä, kallistuen brittipopin, indierockin ja rock'n'rollin laitaan.", "sv": "LUNK är en ensemble på fyra personer med trummor, bas och två elgitarrer, vars stil kretsar kring pop och rock med betoning på brittisk pop, indie rock och rock’n'roll.", "en": "LUNK is a four-strong drum + bass + 2 x guitar band with a style that revolves around pop and rock, gravitating towards brit pop, indie rock and rock 'n' roll." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60551", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:09.363225Z", "last_modified_time": "2023-09-07T14:20:09.363256Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731958.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:08.949340Z", "last_modified_time": "2023-10-23T20:13:27.510153Z", "date_published": null, "start_time": "2023-08-24T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/09F6F9FB4F9FC52CF300A4D6EDB7BF20/Open_Stage_Duo_Hanna_Andrea", "sv": "http://www.espanlava.fi/sv/evenemang/event/09F6F9FB4F9FC52CF300A4D6EDB7BF20/Open_Stage_Duo_Hanna_Andrea", "en": "http://www.espanlava.fi/en/events/event/09F6F9FB4F9FC52CF300A4D6EDB7BF20/Open_Stage_Duo_Hanna_Andrea" }, "description": { "fi": "<p>Jazz-duo Hanna & Andrea tulkitsee lauluja ja sävelmiä samettisesti, vuorotellen kerronnassa myös improvisaation keinoin.</p><p>Espan lavalla kuullaan uusia ja vanhoja englanninkielisiä jazz-kappaleita, joiden versioinnit käyvät hienosävyisesti läpi koko tunneskaalan.<br> <br><b>Hanna Lehmonen</b> (laulu) ja <b>Andrea Martín</b> (piano) tapasivat viime vuonna aloittaessaan opinnot Helsingin Pop & Jazz Konservatoriossa. Duo on siitä lähtien esiintynyt monissa tilaisuuksissa, mikä on hionut soittoa soljuvan yhtenäiseksi.</p>", "sv": "<p>Jazzduon Hanna & Andrea tolkar låtar och melodier sammetslent och använder också improvisation i sitt berättande.</p><p>På Esplanadestraden får vi höra versioner av nya och gamla engelskspråkiga jazzlåtar, som går igenom hela känslorepertoaren finkänsligt.</p>", "en": "<p>Jazz duo Hanna & Andrea interprets songs and tunes with a velvety softness, alternating between narration and improvisation.</p><p>At the Espa Stage, the duo will perform new and old English-language jazz songs with subtle versions covering the entire emotional spectrum.</p>" }, "name": { "fi": "Open Stage: Duo Hanna & Andrea", "sv": "Open Stage: Duo Hanna & Andrea", "en": "Open Stage: Duo Hanna & Andrea" }, "short_description": { "fi": "Jazz-duo Hanna & Andrea tulkitsee lauluja ja sävelmiä samettisesti, vuorotellen kerronnassa myös improvisaation keinoin.", "sv": "Jazzduon Hanna & Andrea tolkar låtar och melodier sammetslent och använder också improvisation i sitt berättande.", "en": "Jazz duo Hanna & Andrea interprets songs and tunes with a velvety softness, alternating between narration and improvisation." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60551/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269760", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5526, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-18T12:56:06.870388Z", "last_modified_time": "2023-10-18T12:56:06.870412Z", "name": "", "url": "https://www.helmet.fi/download/noname/{84233D7D-6AB1-43AE-9633-1355587D8992}/106884", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-10-18T12:56:06.721784Z", "last_modified_time": "2023-10-23T15:24:47.207344Z", "date_published": "2023-10-18T12:08:00Z", "start_time": "2023-10-23T14:00:00Z", "end_time": "2023-10-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Ilmar Raagi film ”Erik Kivisüda” jutustab kahevahelmaailma mereröövlitest, Eriku ja Maria seiklusest selles, sõprusest ja armastusest.</p><p>Esmaspäeval, 23. oktoobril kell 17.00 on võimalik tulla kohtuma peaosatäitja Herman Avandiga Helsingi raamatukogu Oodi 3. korruse lasteala ürituste saali ning küsida filmi tegemise kohta.</p><p>Ürituse korraldab Latokartano Lastering Eesti Esmaspäev.</p>" }, "name": { "fi": "Kohtumine näitleja Herman Avandiga" }, "short_description": { "fi": "Tere tulemast kohtuma peaosatäitja Herman Avandiga ning küsima filmi \"Erik Kivisüda\" tegemise kohta." }, "location_extra_info": { "fi": "Lasten tapahtumatila, 3 krs." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269760/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268509", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2583, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:56.358060Z", "last_modified_time": "2024-02-06T13:38:20.061617Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7B97672D-46A1-46F8-BC66-7CF2AAEA2D3C}/92303", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-20T09:34:02.935835Z", "last_modified_time": "2023-10-23T15:23:05.263973Z", "date_published": "2023-01-11T13:49:00Z", "start_time": "2023-09-22T15:00:00Z", "end_time": "2023-09-22T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<h3>Perjantaisin klo 18</h3><p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Sellon kirjaston Jaminurkassa järjestetään joka perjantai klo 18:00 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan. </p>", "sv": "<h3>Fredagar kl. 18</h3><p>Välkommen med på filmfredag! I Sellobibliotekets Jaminurkka ordnas det varje fredagkväll kl. 18.00 en filmvisning för barn och familjer. Vi väljer filmerna utifrån barnens önskemål. Kom och berätta ditt önskemål till bibliotekets personal och bekanta dig med schemat för filmvisningarna på barnavdelningen i Sellobiblioteket.</p><p>Filmerna har rekommendationsålder T (tillåten för alla åldrar) eller 7 (tillåten för barn över 7 år). Språket för föreställningen är finska. Språket för textningen väljs enligt barnens önskemål.</p>", "en": "<h3>Fridays at 6 pm.</h3><p>Welcome to spend your time together with a friday movie at Sello Library! The movies take place in Jaminurkka at Sello Library every friday at 18:00 for children, families and for the child-minded people. The films are chosen by children from their wishes. </p><p>All films are recommended of age S and K7. The presentation language is Finnish. The texts are chosen by the children from their request. </p>" }, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn i Sello bibliotek", "en": "Friday movie for children" }, "short_description": { "fi": "Tule nauttimaan perjantaileffasta!", "sv": "Välkommen med på filmfredag!", "en": "Welcome to spend your time together with a friday movie at Sello Library!" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268509/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261094", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2582, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:56.013746Z", "last_modified_time": "2024-02-06T13:38:19.975977Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:38:38.716903Z", "last_modified_time": "2023-10-23T15:23:05.169438Z", "date_published": "2023-06-09T07:01:00Z", "start_time": "2023-09-22T14:00:00Z", "end_time": "2023-09-22T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.9.2023</li> <li>6.10.2023</li> <li>3.11.2023</li> <li>1.12.2023</li> </ul></p><ul> <li></li> </ul>" }, "name": { "fi": "Lasten perjantaileffa" }, "short_description": { "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille." }, "location_extra_info": { "fi": "Nuortentila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261094/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267890", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4687, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-08T08:28:50.693575Z", "last_modified_time": "2023-09-08T08:28:50.693608Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CDCC9481-B2F0-4602-B072-B4B82AE33712}/105699", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-07T15:26:21.944013Z", "last_modified_time": "2023-10-23T14:21:17.186210Z", "date_published": "2023-09-07T12:38:00Z", "start_time": "2023-09-22T15:00:00Z", "end_time": "2023-09-22T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p> <strong>Leena Lukkarin</strong> kirjoittama <em>Rita – Sitruunapuun varjoista Suomeen</em> -teos kertoo inspiroivan tarinan rohkeudesta ja sitkeydestä. Tule kuulemaan <strong>Rita Kostaman</strong> uskomattomasta pakomatkasta Ruandan kansanmurhan alta ja uuden elämän aloittamisesta Suomessa.<br> Tilaisuus järjestetään Keskustakirjasto Oodin Saarikoski-matolla (3. krs) perjantaina 22.9. klo 18. Lämpimästi tervetuloa!</p><p>Rita Kostama oli vain 15-vuotias, kun hän joutui jättämään kotinsa ja vanhempansa vuonna 1998. Vuosia kestänyt matka tuhansien järvien maahan ei ollut helppo. Kirja paljastaa Ritan kokemuksia pakolaisuudesta, kohdattuja vääryyksiä ja syrjintää sen eri muodoissa. Suomessa Rita opiskeli uuden kotimaansa kielen, kouluttautui ja perusti perheen. </p><p>“Kun sitten sain Suomessa mahdollisuuden, päätin tarttua siihen; oivalsin, että jos onnistuisin oppimaan kielen, minulla olisi mahdollisuus opiskella niin pitkälle kuin ikinä haluaisin ja vieläpä ilmaiseksi. Ja sitä minä juuri halusin, opiskella”, kertoo Rita kirjassa. </p><p>Rita Kostama valittiin Vuoden pakolaisnaiseksi vuonna 2016. Hän haluaa olla positiivisena esikuvana muille pakolaisille. Rita rakastaa Suomen talvea, taitoluistelua ja avantouintia. </p><p>Leena Lukkari on helsinkiläinen toimittaja ja vapaa kirjoittaja. </p>" }, "name": { "fi": "Kirjan julkistamistilaisuus: Rita – Sitruunapuun varjoista Suomeen" }, "short_description": { "fi": "Tule kuulemaan Rita Kostaman uskomattomasta pakomatkasta Ruandan kansanmurhan alta ja uuden elämän aloittamisesta Suomessa." }, "location_extra_info": { "fi": "3. krs, Saarikoski-matto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267890/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269578", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3385, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-17T13:23:49.026292Z", "last_modified_time": "2024-02-06T13:38:36.635335Z", "name": "", "url": "https://www.helmet.fi/download/noname/{419F35E7-C1C9-49A8-B5BE-D968FA92D306}/90993", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3385/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-13T10:36:09.872330Z", "last_modified_time": "2023-10-23T13:23:02.734389Z", "date_published": "2022-03-30T16:02:00Z", "start_time": "2023-09-22T14:45:00Z", "end_time": "2023-09-22T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<h3>kello 17.45–18.30 Sellon kirjaston Jaminurkassa</h3><p>Tervetuloa mukaan Espoon kaupunginkirjaston tarjoamaan 7–12-vuotiaiden ukuleleryhmään. Tunneilla on tarkoitus tutustua musiikkiin monipuolisesti. Harjoittelemme sointujen, sekä melodian soittamista kappaleiden avulla. Lisäksi teemme musiikin hahmottamista ja ryhmäytymistä tukevia harjoituksia leikkimällä ja piirtämällä. Opetus on oppilaslähtöistä. Kirjastolla on runsaasti ukuleleja, joita voi lainata tunnin ajaksi.</p><p>#musiikki #ukulele #sello #lapset #nuoret</p><p> <strong>Ilmoittautumalla kurssille varmistat paikan. Tunnille mahtuu 15 lasta. Osallistuminen on maksutonta.</strong> </p><p>Ryhmää vetää Lauri Iljin<br> lauri.iljin@espoo.fi</p>", "en": "<h3>Thursday at 17.45–18.30 in Sello Library Jaminurkka</h3><p>Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. In the Ukulele Group we learn basic of the music theory and playing an ukulele. We practice how to play melody and harmony with well-known songs. Teaching is student-centered. The Library has ukuleles that can be borrowed for the lesson.</p><p>#music #ukulele #sello #childern #youth</p><p> <strong>Pre-registration on the Helmet website, 15 children can attend the class. Participation is free of charge.</strong> </p><p>Lauri Iljin teaches the group<br> lauri.iljin@espoo.fi</p>" }, "name": { "fi": "Ukulele 7-12-vuotiaiden ryhmätunti", "en": "Ukulele - 7- to 12-year-old" }, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston tarjoamaan 7–12-vuotiaiden ukuleleryhmään. Tunneilla on tarkoitus tutustua ukulelen soittamiseen monipuolisesti. Kirjastolla on runsaasti lainasoittimia. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. In the Ukulele Group we learn basic of the music theory and playing an ukulele. The Library has ukuleles that can be borrowed for the lesson. Participation is free of charge." }, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269578/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266686", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3594, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-24T13:28:15.875059Z", "last_modified_time": "2024-02-06T13:38:39.119115Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0DE6F617-E889-478A-9A3F-EE78A985E88E}/100585", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3594/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-25T07:38:41.178421Z", "last_modified_time": "2023-10-23T13:23:02.642979Z", "date_published": "2023-02-15T22:00:00Z", "start_time": "2023-09-22T14:00:00Z", "end_time": "2023-09-22T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p> <strong>What is theater?</strong> </p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p> <strong>Your child will learn:</strong> </p><ul> <li>speak in front of the public</li> <li>speak clearly and correctly</li> <li>not to be afraid of the stage</li> <li>express your thoughts out loud</li> <li>to be able to concentrate, show and manage emotions</li> <li>«use your head» for its intended purpose</li> <li>be active and gambling</li> <li>skillfully owns his body</li> </ul></p><p> <strong>The theater opens for children </strong> <strong>8</strong> <strong>-16 y.o. every Friday 17.00-18.30. 20.10. & 10.11. are canceled.</strong> </p><p> <strong>Entresse library, Blue Room</strong> </p><p>You can sign up for the studio and get information about the training program by e-mail <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> and mob. +358413179903</p><p>________________________________________________________________________</p><p> <strong>Перший український дитячий театр Фінляндії «МАСКИ» / </strong> </p><p> <strong>Suomen ukrainalainen lastenteatteri ”NAAMIOT”</strong> </p><p> <strong>Що таке театр?</strong> </p><ul> <li>місце гри та спілкування</li> <li>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</li> <li>тут можна пробувати, вигадувати, показувати, експериментувати</li> <li>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</li> </ul><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p> <strong>Ваша дитина навчиться:</strong> </p><ul> <li>виступати перед публікою</li> <li>чітко та правильно говорити</li> <li>не боятися сцени</li> <li>висловлювати свої думки вголос</li> <li>вміти концентруватися, проявляти та керувати емоціями</li> <li>«користуватися головою» за призначенням</li> <li>бути активною та азартною</li> <li>володіти своїм тілом</li> </ul></p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> або за тел. +358413179903</p>", "en": "<p> <strong>What is theater?</strong> </p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p> <strong>Your child will learn:</strong> </p><ul> <li>speak in front of the public</li> <li>speak clearly and correctly</li> <li>not to be afraid of the stage</li> <li>express your thoughts out loud</li> <li>to be able to concentrate, show and manage emotions</li> <li>«use your head» for its intended purpose</li> <li>be active and gambling</li> <li>skillfully owns his body</li> </ul></p><p> <strong>The theater opens for children </strong> <strong>8</strong> <strong>-16 y.o. every Friday 17.00-18.30. 20.10. & 10.11. are canceled.</strong> </p><p> <strong>Entresse library, Blue Room</strong> </p><p>You can sign up for the studio and get information about the training program by e-mail <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> and mob. +358413179903</p><p>________________________________________________________________________</p><p> <strong>Перший український дитячий театр Фінляндії «МАСКИ» / </strong> </p><p> <strong>Suomen ukrainalainen lastenteatteri ”NAAMIOT”</strong> </p><p> <strong>Що таке театр?</strong> </p><ul> <li>місце гри та спілкування</li> <li>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</li> <li>тут можна пробувати, вигадувати, показувати, експериментувати</li> <li>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</li> </ul><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p> <strong>Ваша дитина навчиться:</strong> </p><ul> <li>виступати перед публікою</li> <li>чітко та правильно говорити</li> <li>не боятися сцени</li> <li>висловлювати свої думки вголос</li> <li>вміти концентруватися, проявляти та керувати емоціями</li> <li>«користуватися головою» за призначенням</li> <li>бути активною та азартною</li> <li>володіти своїм тілом</li> </ul></p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> або за тел. +358413179903</p>" }, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "en": "Ukrainian Children's Theater Club Masks" }, "short_description": { "fi": "Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage. So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!", "en": "Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage. So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!" }, "location_extra_info": { "fi": "Sininen huone", "en": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266686/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268367", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4836, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-19T14:38:20.730121Z", "last_modified_time": "2024-02-06T13:39:00.542384Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B0914AE5-6D68-4507-8535-81CF68CAAD72}/105903", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-19T14:38:18.357928Z", "last_modified_time": "2023-10-23T13:23:02.544570Z", "date_published": "2023-09-19T13:38:03.080000Z", "start_time": "2023-09-22T13:30:00Z", "end_time": "2023-09-22T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Osaatko puhua espanjaa? Haluatko harjoitella taitojasi ryhmässä syntyperäisen kielioppaan kanssa?</p><p>¿Hablas español?¿Quieres practicar tu español en grupo y asesorado por un hablante nativo?</p><p>Tervetuloa espanjan kielikahvilaan perjantaisin klo 16.30-18.00, alkaen 22.9.! ¡Bienvenido al café en español los viernes de 16.30- a18.00, empieza 22.9.!</p><p>Lisätietoja ja ilmoittautuminen: Más información e inscripciones: Lili Carrion, licarpe@hotmail.com</p><p> <br> Photo: Sandra Camacho</p>" }, "name": { "fi": "Espanjan kielikahvila" }, "short_description": { "fi": "Espanjan kielikahvila" }, "location_extra_info": { "fi": "Oppimistila 3, 2 krs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267267", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3778, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T12:24:43.266824Z", "last_modified_time": "2024-02-06T13:38:19.803811Z", "name": "", "url": "https://www.helmet.fi/download/noname/{36B53B87-1AAF-44C8-9D49-5D82E8F05EE9}/92038", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3778/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-30T12:30:55.881926Z", "last_modified_time": "2023-10-23T13:23:02.452105Z", "date_published": "2022-03-04T10:00:00Z", "start_time": "2023-09-22T14:00:00Z", "end_time": "2023-09-22T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<h3>Perjantaisin Tapiolan kirjaston tapahtumatila Heikissä klo 17.00-18.00</h3><p>Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille. Voit osallistua jameihin kaikilla soittimilla. Tilasta löytyy piano. Tule mukaan jameihin soittamaan omia lempikappaleita tai vaikka vain nauttimaan yhdessä musisoinnista. </p><p>#ukulele #musiikki #jami #jamit #trumpetti</p>" }, "name": { "fi": "Ukulelejamit" }, "short_description": { "fi": "Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille. Voit osallistua jameihin kaikilla soittimilla." }, "location_extra_info": { "fi": "Heikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267267/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267311", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T13:24:26.783096Z", "last_modified_time": "2023-08-30T13:24:26.783120Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E3D2DE50-690E-4090-BFB6-C53C68C256D9}/105396", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-30T13:30:11.385909Z", "last_modified_time": "2023-10-23T11:21:35.750871Z", "date_published": "2023-08-30T12:43:00Z", "start_time": "2023-09-22T13:00:00Z", "end_time": "2023-09-22T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<h3> <br> <strong>PERJANTAI 20.10 KLUBI PERUUTETTU</strong> <br> <br> <br> Perjantaisin klo 16</h3><p> <strong>Oletko suomen kielen oppija ja haluat harjoitella puhumista?</strong> </p><p> <strong>Haluatko harjoitella suomea hauskassa ja rennossa ympäristössä? </strong> </p><p>Tule mukaan ”Luetaan yhdessä” klubiin.</p><p>Luemme ja keskustelemme selko kirjoista ja selko uutisista</p><p>Perjantaisin klo 16.00 – 17.30</p><p>Huone: Aalto tai Kari</p><p>Iso Omenan kirjasto</p>" }, "name": { "fi": "20.10 PERUUTETTU Luetaan yhdessä klubi" }, "short_description": { "fi": "Oletko suomen kielen oppija ja haluat harjoitella puhumista? Haluatko harjoitella suomea hauskassa ja rennossa ympäristössä?" }, "location_extra_info": { "fi": "Aalto tai Kari" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267311/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266805", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8223/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3715, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T12:06:10.766914Z", "last_modified_time": "2023-08-25T12:06:10.766945Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7F28E549-82D6-4635-BB40-43958ECD1E71}/105219", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3715/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-25T12:17:08.879112Z", "last_modified_time": "2023-10-23T11:21:35.700953Z", "date_published": "2022-03-23T13:21:00Z", "start_time": "2023-09-22T13:30:00Z", "end_time": "2023-09-22T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa viettämään rentoa perjantai-iltapäivää, tapaamaan muita ja pitämään hauskaa turvallisessa tilassa. Ohjelmassa on mm. tarina-, musiikki- ja tanssituokioita. Täällä voit löytää uusia ystäviä ja saada vertaistukea. <br><br>Kohderyhmä: espanjankielisten perheiden vanhemmat ja yli 2-vuotiaat lapset<br>Aika: perjantaisin 25.8.-27.10.2023 klo 16.30-17.30 <br>Paikka: Pasilan kirjaston lastenosasto<br>Järjestäjä: <a href=\"https://ninho.fi/\">Kulttuurikeskus Ninho ry</a></p><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a><br> <p>Te damos la bienvenida a estos encuentros para familias y bebés hablantes de español. En PICNIC podrás conocer otras familias, hacer nuevas amistades, jugar, cantar, aprender juntos y disfrutar de un encuentro seguro alrededor de la colección de literatura infantil en español de Helmet.</p><p>Les esperamos todos los viernes, a partir del 25 de agosto, de 4.30 a 5.30 pm, en la sala verde de la sección infantil de la Biblioteca de Pasila.</p><p>Sean bienvenidas todas las familias. PICNIC lo hacemos entre todos, así que anímate y ¡trae algo para compartir!</p><p>PICNIC es una coproducción entre la comunidad de familias hispanohablantes y las profesionales de Kulttuurikeskus Ninho ry.</p><p>Las sesiones de PICNIC son gratuitas, y están pensadas para peques caminadores, mayores de 2 años.</p><p>Si necesitas más información, puedes escribirnos a <a href=\"mailto:info@ninho.fi\">info@ninho.fi</a>.</p>", "en": "<p>We welcome you to these meetings for Spanish-speaking families and toddlers. At PICNIC you can meet other families, make new friends, play, sing, learn together, and enjoy a safe gathering around Helmet's collection of children's literature in Spanish.</p><p>We look forward to seeing you every Friday, from 25 August, from 4.30 to 5.30 pm, in the green room of the children's section of the Pasila Library.</p><p>All families are welcome. PICNIC is made by all of us, so come along and bring something to share!</p><p>PICNIC is a co-production between the community of Spanish-speaking families and the professionals of Kulttuurikeskus Ninho ry.</p><p>The PICNIC sessions are free of charge, and are designed for little walkers, 2 years and older.</p><p>If you need more information, you can write to us at info@ninho.fi</p><p>Remember to share with your friends, we are waiting for you!</p><p>Organizer: <a href=\"https://ninho.fi/\">Kulttuurikeskus Ninho ry </a><br><br><a href=\"https://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library\">Pasila Library</a><br><br> Te damos la bienvenida a estos encuentros para familias y bebés hablantes de español. En PICNIC podrás conocer otras familias, hacer nuevas amistades, jugar, cantar, aprender juntos y disfrutar de un encuentro seguro alrededor de la colección de literatura infantil en español de Helmet.</p><p>Les esperamos todos los viernes, a partir del 25 de agosto, de 4.30 a 5.30 pm, en la sala verde de la sección infantil de la Biblioteca de Pasila.</p><p>Sean bienvenidas todas las familias. PICNIC lo hacemos entre todos, así que anímate y ¡trae algo para compartir!</p><p>PICNIC es una coproducción entre la comunidad de familias hispanohablantes y las profesionales de Kulttuurikeskus Ninho ry.</p><p>Las sesiones de PICNIC son gratuitas, y están pensadas para peques caminadores, mayores de 2 años.</p><p>Si necesitas más información, puedes escribirnos a <a href=\"mailto:info@ninho.fi\">info@ninho.fi</a>.</p>" }, "name": { "fi": "PICNIC espanjankielisille vanhemmille ja taaperoille", "en": "PICNIC for Spanish speaking families with toddlers" }, "short_description": { "fi": "Tervetuloa!", "en": "Welcome!" }, "location_extra_info": { "fi": "lastenosasto", "en": "Children’s Section" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266805/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265902", "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/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10675/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3384, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-17T13:23:42.760567Z", "last_modified_time": "2024-02-06T13:38:36.114645Z", "name": "", "url": "https://www.helmet.fi/download/noname/{A01C5C29-1B79-46FD-9839-48645A414609}/88168", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3384/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-17T13:27:40.983365Z", "last_modified_time": "2023-10-23T11:21:35.647598Z", "date_published": "2022-01-11T10:41:00Z", "start_time": "2023-09-22T13:30:00Z", "end_time": "2023-09-22T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<h3>Kello 16.30-17.30 Sellon kirjaston Jaminurkassa </h3><p>Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen alkeiden jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Välillä haastamme myös itseämme soittamalla melodioita ja opettamalla uusia sointuja ja komppeja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Olet aina tervetullut mukaan! Kirjastolla on myös ukuleleja joita voit lainata tunnin ajaksi. </p><p>Ei ennakkoilmoittautumista lähiopetukseen. Osallistuminen on maksutonta </p><p>#musiikki #ukulele #sello </p><p>____________________________________________</p><p>Ryhmää vetää Lauri Iljin<br> lauri.iljin@espoo.fi</p>", "en": "<h3>Thursday at 16.30-17.30 in Sello Library Jaminurkka </h3><p>Welcome to the Espoo City Library Intermediate Ukulele Group. We play popular Finnish and English tunes. Every now and then we challenge ourselves by learning new chords, melody playing and strums. Relaxing atmosphere and communality are importats values of the group. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration</p><p>#music #ukulele #sello</p><p>________________________________</p><p>Lauri Iljin teaches the group<br> lauri.iljin@espoo.fi</p>" }, "name": { "fi": "Ukulele, alkeiden jatkoryhmä", "en": "Ukulele, Intermediate Group" }, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen alkeiden jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Intermediate Ukulele Group. We play popular Finnish and English tunes. Participation is free of charge and no pre-registration" }, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265902/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266226", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T11:24:15.476482Z", "last_modified_time": "2024-02-06T13:38:38.862220Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F52E09C0-3225-4653-B21C-0EF85EB042B3}/101025", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-22T11:27:50.290500Z", "last_modified_time": "2023-10-23T11:21:35.591862Z", "date_published": "2023-03-06T14:33:00Z", "start_time": "2023-09-22T12:30:00Z", "end_time": "2023-09-22T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan avoimeen eSports harrastusryhmään hiomaan pelinsisäistä ja -ulkoista tietotaitoa sekä tutustumaan uusiin mukaviin joukkue- ja pelitovereihin. Harrastekertoihin sisältyy harjoittelua niin yksilö- kuin joukkuepelaamisessa mm. Fortnitessa. Aiempaa pelikokemusta ei vaadita. Ryhmästä voi varata itselleen paikan ilmoittautumalla tai otamme pelureita vastaan ovella ilman ennakkoilmoittautumista, mikäli ryhmässä on vapaita paikkoja.</p><p> <b>aika:</b> Perjantaisin klo 15:30-17:00 8.9.2023 alkaen.Toimintaa ei järjestetä koulujen lomaviikoilla.<br><b>paikka:</b> Oodin 2. kerros, Oppimistila 1<br><br> Järjestäjä: XRoc Gaming / Harrastamisen Suomen malli </p><p>Ilmoittautuminen: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.xroc.gg%2Fkoulut%2F&data=05%7C01%7Csanna.m.huttunen%40hel.fi%7Cc3c444592b8e420f7adb08db9d5ab109%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638276785060090778%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=tZ5cyCHnj1bgvHumiwtdyNdxYQw4VYPt%2BCcm%2FCyJlIQ%3D&reserved=0\">https://www.xroc.gg/koulut/</a></p>" }, "name": { "fi": "Avoin eSports -kerho (6.-9.lk)" }, "short_description": { "fi": "Avoin eSports -kerho (6.-9.lk)" }, "location_extra_info": { "fi": "Oppimistila 1, 2.krs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268303", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4788, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T12:34:37.254179Z", "last_modified_time": "2023-09-15T12:34:37.254209Z", "name": "", "url": "https://www.helmet.fi/download/noname/{9A4915E1-46BA-4D27-BC87-A8D7E7C10670}/105886", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4788/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-15T12:38:08.282893Z", "last_modified_time": "2023-10-23T11:21:35.529305Z", "date_published": "2023-09-15T11:03:00Z", "start_time": "2023-09-22T05:00:00Z", "end_time": "2023-09-22T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023.</p><p>\"Värikäs maailmani -taidenäyttelyssä tarkastellaan luonnon kauneutta ja ihmisen yhteyttä siihen. Teosten abstraktisuus nostattaa maalaukset uudelle tasolle henkisesti, ja jokainen voi tulkita teoksia omasta värikkäästä maailmastaan käsin.\"</p><p> <em>Kuva: Sini-Maaria Vänttinen</em> </p>" }, "name": { "fi": "Värikäs maailmani -taidenäyttely 16.9.-3.10.23" }, "short_description": { "fi": "Sini-Maaria Vänttisen näyttely Värikäs maailmani Lumon kirjastossa 16.9.-3.10.2023." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268303/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8184/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10791/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3325, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-16T13:24:39.760822Z", "last_modified_time": "2023-08-16T13:24:39.760842Z", "name": "", "url": "https://www.helmet.fi/download/noname/{8BF80B82-1677-4A22-BE6B-5854324F5392}/100426", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3325/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-16T13:31:56.296622Z", "last_modified_time": "2023-10-23T11:21:35.458905Z", "date_published": "2023-02-11T22:00:00Z", "start_time": "2023-09-22T07:00:00Z", "end_time": "2023-09-22T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p> <strong>Helsinki-info neuvoo</strong> </p><p>Itäkeskuksen kirjastossa maanantaisin ja keskiviikkoisin klo 9-16 sekä perjantaisin klo 10-16. </p><p>Apua annetaan palveluihin, digiasioihin ja maahanmuuttoon liittyviin kysymyksiin.</p>" }, "name": { "fi": "Helsinki-info neuvoo" }, "short_description": { "fi": "Kysy kaupungista! Neuvomme ja opastamme, kun etsit tietoa kaupungin palveluista tai maahanmuuttoon liittyvistä asioista." }, "location_extra_info": { "fi": "Itäkeskuksen kirjasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27027, "next": "