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=231&weekday=6%2C7
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=232&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=230&weekday=6%2C7" }, "data": [ { "id": "helmet:267552", "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: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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3841, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-01T10:34:18.925631Z", "last_modified_time": "2023-09-01T10:34:18.925652Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DAFB4296-9523-48CA-B46A-51FB90EC1A12}/105467", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3841/?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-01T10:34:18.792845Z", "last_modified_time": "2023-11-07T06:20:27.457207Z", "date_published": "2023-09-01T08:17:00Z", "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lasten tapahtumatila, 3. krs" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Pikku kakkosesta tutun Pikkulin oma laululeikki-show saapuu Oodin lastenalueelle kahden esityksen voimin lauantaina 7.10. klo 13 & 15!" }, "description": { "fi": "<p>Pikkulin oma laululeikki-show saapuu Oodin lastenalueelle kahden esityksen voimin <strong>lauantaina 7.10. klo 13:00 ja 15:00! </strong>Vapaa pääsy!</p><p>Shown tähti on tietysti Pikku Kakkosesta tuttu Pikkuli itse. Pikkulin mukana laulattamassa ja leikittämässä ovat Pikkuli-animaatiosarjan tekijät Metsämarja ja Antti Aittokoski.</p><p>Pikkuli touhuaa mukana koko shown ajan. Saamme kuulla esimerkiksi millaisia kavereita Pikkulilla on ja mitä he tykkäävät leikkiä yhdessä.</p><p>Lammen rannalla tapaamme Pikkulin parhaan ystävän, Honkkeli-linnun. Opimme myös kuinka tehdään Honkkelin ilotepsutus.</p><p>Tapahtumapaikka: Oodin lastenalue, 3. krs, satumatto</p><p>Esitysajat:</p><ul> <li>7.10. klo 13</li> <li>7.10. klo 15</li> </ul>" }, "provider": null, "name": { "fi": "Pikkulin laululeikki-show" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268900", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?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: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: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/helmet:11689/?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" }, { "@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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4915, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-27T11:39:12.139276Z", "last_modified_time": "2023-09-27T11:39:12.139298Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0DFEABEC-53A7-4F20-AF24-69B16C17ABA0}/106213", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4915/?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-09-27T11:39:10.148049Z", "last_modified_time": "2023-11-07T06:20:27.396489Z", "date_published": "2023-09-27T09:10:00Z", "start_time": "2023-10-07T09:00:00Z", "end_time": "2023-10-07T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tammi ja Kallion kirjasto järjestävät yhdessä jo neljännen kerran alakouluikäisille suunnatun Lasten dekkarifestivaalin lauantaina 7.10. klo 12–15.30. Lue lisää..." }, "description": { "fi": "<p> <strong>Tammi ja Kallion kirjasto järjestävät yhdessä jo neljännen kerran alakouluikäisille suunnatun Lasten dekkarifestivaalin lauantaina 7.10. klo 12–15.30.</strong> <br> <br> Mukana toiminnallisessa tapahtumassa ovat <strong>Riina</strong> ja <strong>Sami Kaarla</strong> sekä <strong>Anders Vacklin </strong>kertomassa Pet Agents -sarjastaan ja <strong>Janne Malinen</strong> Waaralinnan salaisuudet -sarjasta. Potter-tietämyksensä voi todistaa Harry Potter 25 vuotta Suomessa -tietokilpailussa, jossa on luvassa upeita palkintoja. Paikalla vierailevat myös supersuositut hahmot Supermarsu ja Koiramies.<br><br> Tule mukaan jännittävään seikkailuun! Pääset tutustumaan kirjoihin ja kirjailijoihin sekä heidän kiinnostaviin hahmoihinsa. Lisäksi Lasten dekkarifestivaalilla on mahdollisuus osallistua erilaisiin työpajoihin ja päästä itsekin mukaan ratkaisemaan arvoituksia.<br> Tapahtumaan on vapaa pääsy.<br><br> Kirjojen myyntipiste on avoinna klo 12–15.30. Kaikki kirjat myydään edullisin festivaalihinnoin. Kirjaston Dekkarikahvila Johtolangassa on mehutarjoilu lapsille koko tapahtuman ajan.</p><p>Ohjelma:</p><ul> <li> <strong>klo 12.00–12.10 </strong>| Kupolisali, 1. krs</li> </ul><p>Tervetuloa Kallion kirjastoon! Kallion kirjasto toivottaa kaikki tervetulleiksi ja kertoo, miten kirjoja lainataan, kuinka kauan kirjoja saa pitää lainassa, keneltä voi kysyä neuvoa, mistä löytyvät lasten dekkarit ja muut kirjat ja paljon muuta.</p><ul> <li> <strong>klo 12.10–12.30 </strong>| Kupolisali, 1. krs</li> </ul><p>HAASTATTELU: Riina ja Sami Kaarla sekä Anders Vacklin kertovat Lemmikkifrendit- ja Pet Agents- sarjoistaan, joissa nörttityttö Kati-e seikkailee yhdessä robottinsa Ti-botin kanssa. <strong>Johanna Harkkila</strong> haastattelee.</p><ul> <li> <strong>klo 12.30 alkaen </strong>| ryhmätila Otso, 1. krs <br><strong><a href=\"https://www.facebook.com/hashtag/huom?__eep__=6&__cft__[0]=AZUOdOb1v0MvAPZcC0HSN54kuBPw5iprCd_dqIz9VlOD741KCuA5qsEfwJ3Tt1T2xh92xgQdLQWijK-Le7w2NWITYtNlEVgGkRpcRrPO2HjyHi6GmGuJAzPapKajwWcZI00&__tn__=q\">#HUOM</a>! Muutos ohjelmaan: piirrospajan tilalla on <a href=\"https://www.facebook.com/hashtag/dekkaripaja?__eep__=6&__cft__[0]=AZUOdOb1v0MvAPZcC0HSN54kuBPw5iprCd_dqIz9VlOD741KCuA5qsEfwJ3Tt1T2xh92xgQdLQWijK-Le7w2NWITYtNlEVgGkRpcRrPO2HjyHi6GmGuJAzPapKajwWcZI00&__tn__=q\">#dekkaripaja</a>!</strong></li> </ul><p>TYÖPAJA: Pet Agents<br> Piirrä Pet Agents -sarjan hahmoja Riina ja Sami Kaarlan ja Anders Vacklinin opastuksella!<br> Miten syntyvät sarjan eläimet, ihmiset ja upeat maisemat?</p><ul> <li> <strong>klo 12.45 </strong>| Kupolisali, 1. krs</li> </ul><p>TAPAA: Supermarsu-hahmo!</p><ul> <li> <strong>klo 13.15—14.00 </strong>| Kupolisali, 1. krs</li> </ul><p>TIETOKILPAILU: Harry Potter 25 vuotta Suomessa – Oletko Potter-tietäjä?<br> Kahoot-tietokilpailuun voit osallistua Kupolisalissa omalla puhelimellasi. Parhaille tietäjille luvassa loistavat kirjapalkinnot!</p><ul> <li> <strong>klo 14.00 </strong>| Kupolisali, 1. krs</li> </ul><p>TAPAA: Koiramies-hahmo!</p><ul> <li> <strong>klo 14.30 – 14.45 </strong>| Kupolisali, 1. krs</li> </ul><p>HAASTATTELU: Kirjailija Janne Malinen raottaa ovet Waaralinnan salaperäiseen parantolaan,<br> jossa vaarat vaanivat niin sokkeloisilla käytävillä kuin ympäröivässä metsässä. Alakouluikäisille<br> sopivassa seikkailusarjassa on ilmestynyt kaksi osaa, Seitsemän kielonlehteä ja<br> Verenpunainen kristalli. Johanna Harkkila haastattelee.</p><ul> <li> <strong>klo 14.45 – 15.30 </strong>| aloitus Dekkarikirjastosta, kulku Kupolisalista, 1. krs</li> </ul><p>TYÖPAJA: Waaralinna-seikkailu<br> Waaralinnan sokkeloiset käytävät ovat täynnä salaisuuksia. Nyt nämä salaisuudet –<br> tai ainakin yksi niistä – raottuvat jännittävällä rastiradalla, jossa pääset ratkaisemaan<br> parantolaan piilotetun viestin arvoituksen yhdessä kirjailija Janne Malisen kanssa.</p><p> <br> Koko tapahtuman ajan:<br><br> • Lastendekkareiden myyntipiste (Kupolisali 1. krs)<br> • <strong>Dekkarikahvila Johtolanka</strong>: mehutarjoilu (Satulinna 3. krs)<br> • Kuvaa itsesi Lasse-Maijan etsivätoimiston etsivien kanssa (1. krs)<br> • Supermarsu vierailee tapahtumassa klo 12.45–13.05 (Kupolisali 1. krs)<br> • Koiramies vierailee tapahtumassa klo 14.00—14.20 (Kupolisali 1. krs)</p><p> <br> </p><p>***</p><p> <strong>Kallion kirjasto</strong> <br> Viides linja 11<br> 00530 Helsinki</p><p>09 310 850 53</p><p> <a href=\"https://www.facebook.com/kirjastokallio\">facebook.com/kirjastokallio</a> </p>" }, "provider": null, "name": { "fi": "Lasten dekkarifestivaali 2023" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268900/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265131", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8308/?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:10855/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2897, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:09.669953Z", "last_modified_time": "2024-02-06T13:40:23.036244Z", "name": "", "url": "https://www.helmet.fi/download/noname/{BF9CBE89-F897-4B97-BF92-224A009A4BE3}/104600", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2897/?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:43:48.912580Z", "last_modified_time": "2023-11-07T06:20:27.348922Z", "date_published": "2023-08-11T07:00:00Z", "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Elopelto" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Koko perheen elokuvia Viikin kirjastossa" }, "description": { "fi": "<p>Tervetuloa katsomaan koko perheen elokuvia Viikin kirjaston Elopeltoon!</p><p>Elokuvia näytetään kerran kuussa launataisin klo 13. Elokuvat ovat kaikille sallittuja (S) ja niihin on vapaa pääsy. </p><p>Elokuvat:</p><p>La 9.9. Heinähattu, Vilttitossu ja ärhäkkä koululainen</p><p>La 7.10. Risto Räppääjä ja Liukas Lennart</p><p>11.11. Heinähattu, Vilttitossu ja Rubensin veljekset</p><p>9.12. Risto Räppääjä ja Sevillan saituri</p>" }, "provider": null, "name": { "fi": "Pikkukino" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265131/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267749", "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: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:10829/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3885, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-05T11:34:49.559397Z", "last_modified_time": "2023-09-05T11:34:49.559418Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C96BA6B0-572A-4704-8154-43C64691B9BA}/105607", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3885/?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-05T11:34:48.686504Z", "last_modified_time": "2023-11-07T06:20:27.290875Z", "date_published": "2023-09-05T10:52:00Z", "start_time": "2023-10-07T09:00:00Z", "end_time": "2023-10-07T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Kumpulan Kätsyt eli Kumpulan Siirtolapuutarhan käsityön harrastajat tapaavat käsitöiden merkeissä Oulunkylän kirjastossa. Tervetuloa myös muut käsityön ystävät!" }, "description": { "fi": "<p>Kumpulan Kätsyt eli Kumpulan Siirtolapuutarhan käsityön harrastajat tapaavat käsitöiden merkeissä Oulunkylän kirjastossa. Tervetuloa myös muut käsityön ystävät!</p><p>Tule mukaan vaikka opettelemaan sukan kantapään tekeminen.</p><p>Avoimet tapaamiset kirjaston monitoimitilassa lauantaisin 7.10., 28.10. ja 2.12.2023.</p><p>Kuva: unsplash.com / Ursula Castillo</p><p> <a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Oulunkylan_kirjasto\">Oulunkylän kirjasto</a> </p>" }, "provider": null, "name": { "fi": "Käsityötapaaminen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267749/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264147", "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: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: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/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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2629, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:22.474612Z", "last_modified_time": "2023-08-15T15:28:22.474634Z", "name": "", "url": "https://www.helmet.fi/download/noname/{09A3471A-BF1D-432C-9E00-A10C7D2ECA94}/104550", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2629/?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-08-15T15:43:47.287666Z", "last_modified_time": "2023-11-07T06:20:27.239744Z", "date_published": "2023-07-19T10:55:00Z", "start_time": "2023-10-07T10:00:00Z", "end_time": "2023-10-07T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.", "en": "Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture." }, "description": { "fi": "<p>Tervetuloa Iso Omenan kirjastoon kuuntelemaan kiinankielisiä satuja ja oppimaan kiinalaisesta kulttuurista.</p><p>Kiinankielinen satutunti on suunnattu kiinankielisille lapsille, jotka ovat kiinnostuneita kiinan kielen oppimisesta. Satutunnit järjestetään kirjaston lastenosastolla.</p>", "en": "<p>Welcome to Iso Omena Library to listen to stories in Chinese and learn about Chinese culture.</p><p>The story times are arranged at the library's children's section.</p>" }, "provider": null, "name": { "fi": "Kiinankielinen satutunti", "en": "Chinese Story Time" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264147/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18703/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10737/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11202/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11756/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3708, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T08:43:50.656069Z", "last_modified_time": "2023-08-25T08:43:50.656091Z", "name": "", "url": "https://www.helmet.fi/download/noname/{52525431-DA01-47BF-9A07-A406040AAF0A}/105213", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3708/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" } ], "audience": [], "created_time": "2023-08-25T08:59:03.878452Z", "last_modified_time": "2023-11-07T06:20:27.186596Z", "date_published": "2023-08-25T06:00:00Z", "start_time": "2023-10-07T09:00:00Z", "end_time": "2023-10-07T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "ru": "Robohuone, Tikkurilan kirjasto." }, "info_url": null, "provider_contact_info": null, "short_description": { "ru": "Добро пожаловать в наш книжный клуб!" }, "description": { "ru": "<p>Добро пожаловать в книжный клуб ! </p><p>Приглашаем тебя, 10-14 летний подросток, если ты любишь читать и общаться на разные темы. Книжный клуб бесплатный и к нему не нужно готовиться заранее.</p><p>На встрече мы все вместе читаем/слушаем короткий текст на русском языке, а потом разговариваем об этом тексте и просто о жизни. Каждый участник имеет право высказать то, что он думает, или просто послушать других, думая о своём.</p><p>В осеннем сезоне 2023 встречи книжного клуба проходят три раза в месяц <strong>по субботам с 12 до 13:30.</strong></p><p> <strong>Место встреч:</strong> Robohuone, Tikkurilan kirjasto.</p><p> <strong>Даты встреч:</strong> 2, 9 и 23 сентября </p><p> 7, 21 и 28 октября</p><p> 4, 11 и 18 ноября</p><p> 2, 9 и 16 декабря</p><p>Ведущие клуба: переводчик с английского Анастасия Басова и детский писатель Анна Анисимова.</p><p>Photo by <a href=\"https://unsplash.com/@tommyskywalker?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Qihao Wang</a> on <a href=\"https://unsplash.com/photos/BEeC31IpMEg?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a></p>" }, "provider": null, "name": { "ru": "Книжный клуб для подростков" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:263789", "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:10675/?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:12023/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2999, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:43:45.656869Z", "last_modified_time": "2023-08-15T15:43:45.656887Z", "name": "", "url": "https://www.helmet.fi/download/noname/{CF5839BC-1827-4AA6-9108-085B893D8FFC}/104535", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2999/?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:p2433/?format=api" } ], "created_time": "2023-08-15T15:43:45.534304Z", "last_modified_time": "2023-11-07T06:20:27.133236Z", "date_published": "2023-07-15T08:12:40.297000Z", "start_time": "2023-10-07T07:00:00Z", "end_time": "2023-10-07T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kanerva-huone (pohjakerros)" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Oletko 60+ v.?Haluatko oppia näyttelemään? Tule mukaan kuuntelemaan, kokeilemaan ja oppimaan näyttelijäntyön perusteita iloisessa seurassa ilmaiseksi!" }, "description": { "fi": "<p>Oletko 60+ v.?Haluatko oppia näyttelemään?</p><p>Tule mukaan kuuntelemaan, kokeilemaan ja oppimaan näyttelijäntyön perusteita iloisessa seurassa ilmaiseksi!</p><p>Aika: la 7.10.2023 ja la 21.10.2023 klo 10-12</p><p>Paikka: Itäkeskuksen kirjasto (kokoushuone Kanerva)</p><p>Ei tarvitse ilmoittautua etukäteen. Tervetuloa rohkeasti mukaan!</p><p>Lisätietoja: <a href=\"mailto:opera.tellus@gmail.com\" title=\"mailto:opera.tellus@gmail.com\">opera.tellus@gmail.com</a></p>" }, "provider": null, "name": { "fi": "Teatterityöpaja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:263789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:262953", "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: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:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2892, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:34:05.218413Z", "last_modified_time": "2023-08-15T15:34:05.218441Z", "name": "", "url": "https://www.helmet.fi/download/noname/{4033CEBC-6579-498C-9799-A31B3F321350}/104408", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2892/?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": [], "created_time": "2023-08-15T15:43:45.188058Z", "last_modified_time": "2023-11-07T06:20:27.079489Z", "date_published": "2023-07-05T10:43:00Z", "start_time": "2023-10-07T07:30:00Z", "end_time": "2023-10-07T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Welcome to our monthly book and culture discussion group at Itäkeskus Library! Discussion in English.", "en": "Welcome to our monthly book and culture discussion group at Itäkeskus Library! Discussion in English." }, "description": { "fi": "<p> <strong>Welcome to our monthly book and culture discussion group at Itäkeskus Library!</strong> </p><p>Each month participants will read a book, watch a film, or listen to an album <strong>related to a theme that the group decides on. </strong></p><p>During the gathering we'll have coffee, share what we've read, watched or listened to, and see where the conversation takes us.</p><p> <strong>Dates (all Saturdays): </strong> <br> November 11th, December 9th<br><strong>Time: </strong>10:30-12:00</p><p> <strong>The theme for the November 11th meeting is inspired by the Helmet Reading Challenge #19. Read a book or watch a film set in a place you have visited (or that you would like to visit). You can interpret \"place\" however you like. </strong> </p><p> <strong>If you don't have time to read a book or watch a film, you are still welcome to join the discussion!</strong> </p><p>For more information or reading suggestions please contact Robert at robert.conaway-bothwell@hel.fi</p>", "en": "<p> <strong>Welcome to our monthly book and culture discussion group at Itäkeskus Library!</strong> </p><p>Each month participants will read a book, watch a film, or listen to an album related to a theme (for example Japan, Historical Fiction, Film Noir, or whatever the group decides on). </p><p>During the gathering we'll have coffee, share what we've read, watched or listened to, and see where the conversation takes us.</p><p> <strong>Dates for autumn (all Saturdays): </strong> <br> September 9th, October 7th, November 11th, December 9th<br><strong>Time: </strong>10:30-12:00</p><p> <strong>The theme for the first meeting is To be read... </strong>You can read a book from your reading list or watch a film you’ve been meaning to watch, etc. English need not be your native language to participate.</p><p>At the first meeting we will choose themes for the rest of the autumn.</p><p>For more information or reading suggestions please contact Robert at robert.conaway-bothwell@hel.fi</p>" }, "provider": null, "name": { "fi": "Book and Culture Café in English", "en": "Book and Culture Café in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:262953/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:258496", "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:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2627, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:28:21.751939Z", "last_modified_time": "2024-02-06T13:38:20.614203Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3C85B692-C8B4-4CBC-9F31-0DF44BB3299F}/100129", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2627/?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": [], "created_time": "2023-08-15T15:43:44.095204Z", "last_modified_time": "2023-11-07T06:20:27.004977Z", "date_published": "2023-02-03T08:39:00Z", "start_time": "2023-10-07T08:00:00Z", "end_time": "2023-10-07T08:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Akseli-sali", "en": "Akseli-sali" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Unique Mantra Meditation for mind & soul", "en": "Unique Mantra Meditation for mind & soul" }, "description": { "fi": "</p><p>MEDITATION</p><p>Unique Mantra Meditation for mind & soul</p><p> • health benefits • mindfulness</p><p>• emotional well-being • stress relief</p><p>Once a month on Saturdays at 11.00 – 11.50</p><p>Sep 2, Oct 7, Nov 4 and Dec 2</p><p> <strong>facebook</strong> :-<a href=\"https://www.facebook.com/realityretreatfi/\">https://www.facebook.com/realityretreatfi/</a></p><p>Walk in or RSVP to <a href=\"mailto:realityretreat.fi@gmail.com\">realityretreat.fi@gmail.com</a></p>", "en": "</p><p>MEDITATION</p><p>Unique Mantra Meditation for mind & soul</p><p> • health benefits • mindfulness</p><p>• emotional well-being • stress relief</p><p>Once a month on Saturdays at 11.00 – 11.50</p><p>Sep 2, Oct 7, Nov 4 and Dec 2</p><p> <strong>facebook</strong> :-<a href=\"https://www.facebook.com/realityretreatfi/\">https://www.facebook.com/realityretreatfi/</a></p><p>Walk in or RSVP to <a href=\"mailto:realityretreat.fi@gmail.com\">realityretreat.fi@gmail.com</a></p>" }, "provider": null, "name": { "fi": "Reality Retreat", "en": "Reality Retreat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:258496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:260535", "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": [], "price": null, "description": null, "info_url": 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:43:42.201596Z", "last_modified_time": "2023-11-07T06:20:26.940327Z", "date_published": "2022-12-12T22:00:00Z", "start_time": "2023-10-07T08:00:00Z", "end_time": "2023-10-07T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa virittäytymään tarinoiden taajuudelle!" }, "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>" }, "provider": null, "name": { "fi": "Satutuokio lauantaisin" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:260535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268372", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8178/?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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4812, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-18T17:39:09.652881Z", "last_modified_time": "2023-09-18T17:39:09.652903Z", "name": "", "url": "https://www.helmet.fi/download/noname/{27F71D9E-BD8D-45E3-8783-566C37E793C7}/105956", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4812/?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-18T17:39:08.155625Z", "last_modified_time": "2023-11-07T06:20:26.870612Z", "date_published": "2023-09-18T15:20:00Z", "start_time": "2023-10-07T07:30:00Z", "end_time": "2023-10-07T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa musiikilliseen taaperotuokioon Kontulan kirjastoon!" }, "description": { "fi": "<p>Tervetuloa musiikilliseen taaperotuokioon Kontulan kirjastoon!</p><p>Tuokiossa lauletaan, leikitään, musisoidaan ja luetaan kirjaa. Aiempaa musiikillista kokemusta ei tarvita.</p><p>Tuokio pidetään kirjaston lastenosastolla klo 10.30.</p><p>Vapaa pääsy!</p><p>Kuva: Jelleke Vanooteghem/ Unsplash</p>" }, "provider": null, "name": { "fi": "Musiikillinen taaperotuokio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268372/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267502", "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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4734, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-12T10:47:07.935729Z", "last_modified_time": "2023-09-12T10:47:07.935751Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DED6679B-9707-44F5-BDDC-D78587FD957C}/105762", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4734/?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-31T13:42:06.769443Z", "last_modified_time": "2023-11-05T18:21:28.577104Z", "date_published": "2023-08-31T12:36:00Z", "start_time": "2023-11-05T14:00:00Z", "end_time": "2023-11-05T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tapiolan Kamarikuoro on jo 40 vuoden ajan tarjonnut yleisölleen tilaisuuksia kuulla kuoromusiikin klassikoita ja haastavampaakin kuoro-ohjelmistoa." }, "description": { "fi": "<h3>Sunnuntaina 5.11. klo 16 lavalla</h3><p>Tapiolan Kamarikuoro on jo 40 vuoden ajan tarjonnut yleisölleen tilaisuuksia kuulla kuoromusiikin klassikoita ja haastavampaakin kuoro-ohjelmistoa. Mitä erilaisia tunnelmia ja äänimaailmoja säveltäjät saavatkaan kuorosta irti? Tapiolan Kamarikuoro esittää otteita tulevasta juhlakonsertistaan ja johtaja Hannu Norjanen kertoo musiikin taustoista.</p><p>Kesto: n. 30 minuuttia.</p>" }, "provider": null, "name": { "fi": "Kuoromusiikin maistiaisia" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267502/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:257488", "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: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:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4758, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-13T13:50:18.939305Z", "last_modified_time": "2023-09-13T13:50:18.939328Z", "name": "", "url": "https://www.helmet.fi/download/noname/{3C4AC710-C2B5-4967-8183-3416B55D8BF6}/101410", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4758/?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:p6165/?format=api" } ], "created_time": "2023-09-13T13:50:17.345819Z", "last_modified_time": "2023-11-05T10:23:24.764723Z", "date_published": "2023-03-24T10:30:00Z", "start_time": "2023-11-04T11:00:00Z", "end_time": "2023-11-04T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava", "en": "Stage" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Sellon kirjastossa järjestetään Musafestarit lauantaina 4.11 kello 13. Festareiden ohjelma on nyt julkaistu! Musafestareilla esiintyjinä toimivat kirjaston asiakkaat.", "en": "In Sello library is Music Festival Saturday 20th of May. The performers of Sello library's music festivals are now published! If you do music, play any instrument, or have a band you have an opportunity to perform in this Music festival." }, "description": { "fi": "<h2> <strong>Sellon kirjaston musafestarit II 4.11.2023 klo 13.00</strong> </h2></p><p>Sellon kirjaston musafestareiden esiintyjät ovat nyt julkaistu! Musafestareilla esiintyjinä toimivat kirjaston asiakkaat. Pääsemme päivän aikana kuulemaan paljon erityylisiä musiikkiesityksiä. Ota ystävä mukaan ja tule nauttimaan musiikista ja festareiden tunnelmasta Sellon kirjastoon klo 13.00 alkaen! Ohjelmaan tulee vielä tarkentavia tietoja esiintyjistä. Tekniikasta ja äänentoistosta vastaa kirjaston henkilökunta. </p><p> <strong>13.00 Vladi </strong> </p><p>Hänen nimensä on Vladi. Hän on aloittava suomalainen muusikko. Vladi esittää pop-musiikkia suomen kielellä ja hän myös itse säveltää omia kappaleita. </p><p> <strong>13.20 Sekulele</strong> </p><p>Sellon kirjaston ukuleleryhmä soittaa viikoittain yhdessä. Soittajat ovat erittäin eteviä ja innokkaita muusikoita, jotka tarttuvat innolla uusiin sovituksiin ja haasteisiin. Konsertissa kuulemme laajasti erilaisia soittotekniikoita ja erityylisiä musiikkikappaleita. </p><p> <strong>13.40 Hanna Haapanen </strong> </p><p>Hanna Haapanen on helsinkiläinen laulaja-lauluntekijä ja omakustanneartisti, joka säveltää ja sanoittaa folk-henkisiä, runollisia kappaleitaan ensisijaisesti itselleen rohkaisuksi ja lohdutukseksi. Hän haluaa jakaa musiikista saamaansa toivoa muillekin, sillä yhden laulunsa sanoin “en ole yksin kun laulan”. Toukokuussa 2023 Hanna julkaisi toisen studioalbuminsa Hiljaa hyvä tulee, joka käsittelee odotuksen, kaipuun, yksinäisyyden ja toipumisen teemoja syvällisesti ja rehellisesti, mutta valoisalla pohjavireellä. Kaunista maisemointia levyn kitaravetoisiin kappaleisiin luovat tuottaja Viktori Pesosen (SpiritEagle) upeat sovitukset sekä vierailevat soittajat. Live-esiintyjänä Hanna on energinen, herkkä ja persoonallinen tulkitsija. </p><p> <strong>14.00 Sabrina Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Suomeen Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>Ohjelmisto: </p><p>Turkish March, by Mozart <br> Nottorno by Grieg <br> D. Scarlatti: Sonata in B minor K. 27 L. 449 </p><p> <strong>14.20 Stephen Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Finandiin Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>Ohjelmisto: </p><p>MacDowell: Shadow Dance, Op. 39 No. 8 <br> J.B.Vanhal, Sonata d moll op.30 <br> Selim Palmgren ~ Snowflakes Op. 57 </p><p> <strong>14.40 Nokkahuilutrio</strong> </p><p>Nokkahuilutrio muodostuu kolmesta nokkahuiluyhtye Flauto Dolcen jäsenestä, jotka soittavat W.A. Mozartin Divertimento II:sta KV 229 osat Allegro, Menuetto, Larghetto ja Rondo.</p><p> <strong>15.00 Nina Camilla</strong> </p><p>When Nina Camilla was 9, she wrote her first song about a tiny teddy bear she had crafted at school. After a 40 year creative break, suddenly, during an intense period of darkness and despair, words and melodies started, again, to take shape in her head. She learned the ukulele to be able to make the songs come alive. In a couple of years she’s written another 25 songs and performed them at open stages and other events mainly in Helsinki and her home town Espoo. She says composing and singing have been crucial for her recovery. </p><p>During the long break she was, however, musically active with classical solo singing and several choirs, which she today sees as an advantage. Her wide vocal range reaches from a deep warmth to a high silverness. </p><p>Many of Nina’s songs are inspired by human interactions, heart-ache and recovery. The audience’s overwhelming feedback, especially when they often tell her that they can recognize themselves in her stories, has motivated her immensely. </p><p> <strong>15.20 Sara Aurelia</strong> </p><p>Sara Aurelia laulaa ja soittaa kitaraa. Hänen genrensä on singer/songwriter </p><p> <strong>15.40 Talvikki </strong> </p><p>Talvikki laulaa ja soittaa pianoa. Hänen genrensä on singer/songwriter </p><p> <strong>16.00 Folkinukke </strong> </p><p>Folkinukke esittää covereita ja alkuperäisiä kappaleita kahdella kitaralla ja laululla. </p><p> <strong>16.20 Areyar </strong> </p><p>The band consists of three female teenagers with passion for music. On top of studies they are also involved in music to keep their creativity intact. Archisha the keyboardist; Stefaniia the drummer and Nazaneen the Bassist. </p><p> <strong>16.40 OranskiMania </strong> </p><p>Olemme kansainvälinen monikulttuurinen bändi, nimeltään OranskiMania. Meidän tyylimme on Pop-Rock fusion ja Klassik-instrumental. Laulujen kielinä ovat englanti ja ranska, Sellon musafestareilla soitamme ensimmäistä kertaa kappaleita uudelta albumiltamme. </p><p> <strong>17.00 Nordindians </strong> </p><p>1 Upbeat folk song in Punjabi (Language of South Asia, particular to India and Pakistan) </p><p>1 Upbeat folk song in Italian language </p><p>1 Stanza of Finnish Schlager called 'Olen Suomalainen by Kari Tapio </p><p>2 Bollywood songs </p><p>#festivaali #festari #festarit #musiikki #esitys</p>", "en": "<h2> <strong>Music festival in Sello library II 4.11.2023 at 1:00 p.m</strong> </h2></p><p>The performers of Sello library's music festivals are now published! During the day, we get to hear a lot of musical performances of different styles. Take a friend with you and come enjoy the music and the party atmosphere at Sello's library from 1:00 p.m.! More detailed information about the performers will be added to the program. </p><p> <strong>13.00 Vladi </strong> </p><p>Hänen nimensä on Vladi. Hän on aloittava suomalainen muusikko. Vladi esittää pop-musiikkia suomen kielellä ja hän myös itse säveltää omia kappaleita. </p><p> <strong>13.20 Sekulele</strong> </p><p>Sellon kirjaston ukuleleryhmä soittaa viikoittain yhdessä. Soittajat ovat erittäin eteviä ja innokkaita muusikoita, jotka tarttuvat innolla uusiin sovituksiin ja haasteisiin. Konsertissa kuulemme laajasti erilaisia soittotekniikoita ja erityylisiä musiikkikappaleita. </p><p> <strong>13.40 Hanna Haapanen </strong> </p><p>Hanna Haapanen on helsinkiläinen laulaja-lauluntekijä ja omakustanneartisti, joka säveltää ja sanoittaa folk-henkisiä, runollisia kappaleitaan ensisijaisesti itselleen rohkaisuksi ja lohdutukseksi. Hän haluaa jakaa musiikista saamaansa toivoa muillekin, sillä yhden laulunsa sanoin “en ole yksin kun laulan”. Toukokuussa 2023 Hanna julkaisi toisen studioalbuminsa Hiljaa hyvä tulee, joka käsittelee odotuksen, kaipuun, yksinäisyyden ja toipumisen teemoja syvällisesti ja rehellisesti, mutta valoisalla pohjavireellä. Kaunista maisemointia levyn kitaravetoisiin kappaleisiin luovat tuottaja Viktori Pesosen (SpiritEagle) upeat sovitukset sekä vierailevat soittajat. Live-esiintyjänä Hanna on energinen, herkkä ja persoonallinen tulkitsija. </p><p> <strong>14.00 Sabrina Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Suomeen Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>Turkish March, by Mozart <br> Nottorno by Grieg <br> D. Scarlatti: Sonata in B minor K. 27 L. 449 </p><p> <strong>14.20 Stephen Donovan </strong> </p><p>Stephen ja Sabrina Donovan muuttivat Finandiin Ukrainasta sodan takia. Suomeen saapuessaan he molemmat osallistuivat piano-ohjelmiin sekä Helsingin konservatoriossa että Sibelius-Akatemiassa. </p><p>MacDowell: Shadow Dance, Op. 39 No. 8 <br> J.B.Vanhal, Sonata d moll op.30 <br> Selim Palmgren ~ Snowflakes Op. 57 </p><p> <strong>14.40 Nokkahuilutrio</strong> </p><p>Nokkahuilutrio muodostuu kolmesta nokkahuiluyhtye Flauto Dolcen jäsenestä, jotka soittavat W.A. Mozartin Divertimento II:sta KV 229 osat Allegro, Menuetto, Larghetto ja Rondo. </p><p> <strong>15.00 Nina Camilla</strong> </p><p>When Nina Camilla was 9, she wrote her first song about a tiny teddy bear she had crafted at school. After a 40 year creative break, suddenly, during an intense period of darkness and despair, words and melodies started, again, to take shape in her head. She learned the ukulele to be able to make the songs come alive. In a couple of years she’s written another 25 songs and performed them at open stages and other events mainly in Helsinki and her home town Espoo. She says composing and singing have been crucial for her recovery. </p><p>During the long break she was, however, musically active with classical solo singing and several choirs, which she today sees as an advantage. Her wide vocal range reaches from a deep warmth to a high silverness. </p><p>Many of Nina’s songs are inspired by human interactions, heart-ache and recovery. The audience’s overwhelming feedback, especially when they often tell her that they can recognize themselves in her stories, has motivated her immensely. </p><p> <strong>15.20 Sara Aurelia</strong> </p><p>Sara Aurelia laulaa ja soittaa kitaraa. Hänen genrensä on singer/songwriter </p><p> <strong>15.40 Talvikki </strong> </p><p>Talvikki laulaa ja soittaa pianoa. Hänen genrensä on singer/songwriter </p><p> <strong>16.00 Folkinukke </strong> </p><p>Folkinukke esittää covereita ja alkuperäisiä kappaleita kahdella kitaralla ja laululla. </p><p> <strong>16.20 Areyar </strong> </p><p>The band consists of three female teenagers with passion for music. On top of studies they are also involved in music to keep their creativity intact. Archisha the keyboardist; Stefaniia the drummer and Nazaneen the Bassist. </p><p> <strong>16.40 OranskiMania </strong> </p><p>Olemme kansainvälinen monikulttuurinen bändi, nimeltään OranskiMania. Meidän tyylimme on Pop-Rock fusion ja Klassik-instrumental. Laulujen kielinä ovat englanti ja ranska, Sellon musafestareilla soitamme ensimmäistä kertaa kappaleita uudelta albumiltamme. </p><p> <strong>17.00 Nordindians </strong> </p><p>1 Upbeat folk song in Punjabi (Language of South Asia, particular to India and Pakistan) </p><p>1 Upbeat folk song in Italian language </p><p>1 Stanza of Finnish Schlager called 'Olen Suomalainen by Kari Tapio </p><p>2 Bollywood songs </p><p>#festivaali #festari #festarit #musiikki #esitys #festival</p>" }, "provider": null, "name": { "fi": "Sellon kirjaston musafestarit", "en": "Music festival in Sello library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:257488/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269891", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8310/?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:10856/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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:p1808/?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:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5595, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-23T10:27:22.388345Z", "last_modified_time": "2023-10-23T10:27:22.388370Z", "name": "", "url": "https://www.helmet.fi/download/noname/{20D0BF02-1ED3-49C7-AABA-3DAA4B10C295}/106984", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5595/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-10-23T10:27:22.358579Z", "last_modified_time": "2023-11-04T21:23:05.257555Z", "date_published": "2023-10-23T09:08:00Z", "start_time": "2023-11-04T11:00:00Z", "end_time": "2023-11-04T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Koko Vuotalo, kirjasto on avoinna vain tapahtuman osalta pyhäpäivän vuoksi." }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Ku soo dhawoow! | Marhaban! | Tervetuloa! Välkommen! Welcome! Valoa Vuotalossa -perhetapahtuma koko Vuotalossa lauantaina 4.11. Huom! Kirjasto on muuten kuin tapahtumaltaan suljettu pyhäinpäivän vuoksi." }, "description": { "fi": "<p>Ku soo dhawoow! | Marhaban! | Tervetuloa! Välkommen! Welcome!</p><p>VALOA VUOTALOSSA -PERHETAPAHTUMA<br><br> Huom! Kirjasto on avoinna vain tapahtuman osalta, muuten suljettu pyhäpäivän vuoksi!</p><p>Lapsille ja nuorille ohjelmaa eri puolilla taloa. Vanhemmille kohtaamisia ja tietoa suomeksi, somaliksi ja arabiaksi kaupungin ja järjestöjen eri palveluista lapsiperheille. Vapaa pääsy!</p><p>Esiintyjinä mm Pelle Moo klovni sekä Sanna Karlsson-Sutisna. Päivä huipentuu Hassan Maikalin haastatteluun ja esitykseen klo 15.30.<br> Kahvila Pokkari on auki klo 13-16.</p><p>Järjestäjinä Moniääninen Helsinki -hanke, Vuosaaren kirjasto ja Vuotalon kulttuuripalvelut. Mukana tapahtuman toteuttamisessa ovat lukuisia kaupungin ja järjestöjen eri tahoa, kuten kirjastoauto sekä ennalta estävä poliisi. Seuraa Moniääninen Helsinki- sekä Vuotalo facebook-profiilejä, tapahtumatietoja päivitetään. Lisätietoja pia.rinne@hel.fi.</p><p> <a href=\"https://l.facebook.com/l.php?u=http%3A%2F%2Fwww.vuotalo.fi%2F%3Ffbclid%3DIwAR3YQoKf83D_MDroTLC1osJGY_EC-Who3pT1ARw7R0xWxDwvlZ2-zJsh3aA&h=AT2mW09hdEIOnMUMXy_6cGQRC2gfGb11lG52Mq477BaBHBQJF1gfbddg4urJ2RFC42O0j_F6_AzB-c3SnsJGDKEmzK1W07OGj6yZAIS57St5v4p-1tu7S0RTxskXGjUKA53nkXUrmZWS_Fb29Yt5&__tn__=q&c[0]=AT2HFuSrPO6gS3dz1V2ynvdvBre-u0vJATOtxdP_K8xMyhiHFCUPkrwl-wje6T3TnKtW_mDnMwLh4NkQHAJVSmMQJ4aNNo50ZB_Qgorrov2ErXj-vhUdXiadFGM9EVb_HhSbteiv4ZpIXt8uvitVYzrmbc3s\">www.vuotalo.fi</a> </p><p>LJUS I NORDHUSET FAMILJE-EVENEMANG<br><br> Notera! Biblioteket är endast öppet för evenemanget, annars stängt på grund av helgdag!</p><p>Program för barn och unga i hela huset. För föräldrarna möten och information på finska, somaliska och arabiska om stadens och olika organisationers service för barnfamiljer. Fritt inträde!</p><p>Uppträdanden av bla clownen Pelle Moo och Sanna Karlsson-Sutisna. Dagen kulminerar i intervju med och uppträdande av Hassan Maikal kl. 15.30.<br> Café Pokkari är öppet kl. 13-16.</p><p>Arr. Moniääninen Helsinki-projektet och Nordsjö bibliotek samt Nordhusets kulturtjänster. Flera olika avdelingar inom staden samt olika organisationer är med och förverkligar dagen, bland andra biblioteksbussen och den preventiva polisen. Följ Moniääninen Helsinkis och Nordhusets facebook-sidor för programuppdateringar. Tilläggsinformation pia.rinne@hel.fi</p><p> <a href=\"https://l.facebook.com/l.php?u=http%3A%2F%2Fwww.vuotalo.fi%2F%3Ffbclid%3DIwAR1pIOvge69xnz7XwUBLwhtMqzIHzFNV2AXXg97lquGnvWo66hy7sDiX1qQ&h=AT2mW09hdEIOnMUMXy_6cGQRC2gfGb11lG52Mq477BaBHBQJF1gfbddg4urJ2RFC42O0j_F6_AzB-c3SnsJGDKEmzK1W07OGj6yZAIS57St5v4p-1tu7S0RTxskXGjUKA53nkXUrmZWS_Fb29Yt5&__tn__=q&c[0]=AT2HFuSrPO6gS3dz1V2ynvdvBre-u0vJATOtxdP_K8xMyhiHFCUPkrwl-wje6T3TnKtW_mDnMwLh4NkQHAJVSmMQJ4aNNo50ZB_Qgorrov2ErXj-vhUdXiadFGM9EVb_HhSbteiv4ZpIXt8uvitVYzrmbc3s\">www.vuotalo.fi</a> </p><p>LIGHT AT VUOTALO FAMILY EVENT<br><br> Note! The library is only open for the event, otherwise closed due to a public holiday!</p><p>Program for children and youngsters all over the house. For the parents get-togethers and knowledge in finnish, somalian and arabic languages about different services for families with children provided by the city or by different organizations. Free entry!</p><p>Performances by Pelle Moo Clown and Sanna Karlsson-Sutisna among others. At the end of the day interview with and performance by Hassan Maikal at 3.30 pm.<br> Café Pokkari is open at 1-4 pm.</p><p>Org. Moniääninen Helsinki-project, Vuosaari Library and Vuotalo Cultural Services. Several departments of the city like the Library Bus and different organizations are participating as well as the Preventive Police. Follow Moniääninen Helsinki- and Vuotalo Facebook-profiles, the event information will be updated. More information pia.rinne@hel.fi.</p><p> <a href=\"https://l.facebook.com/l.php?u=http%3A%2F%2Fwww.vuotalo.fi%2F%3Ffbclid%3DIwAR2di8_x0q_itWXnBUQYCtxO6lB_T11qDw5yljgLzsV4wlvQ36Sh5Uv_lbY&h=AT2mW09hdEIOnMUMXy_6cGQRC2gfGb11lG52Mq477BaBHBQJF1gfbddg4urJ2RFC42O0j_F6_AzB-c3SnsJGDKEmzK1W07OGj6yZAIS57St5v4p-1tu7S0RTxskXGjUKA53nkXUrmZWS_Fb29Yt5&__tn__=q&c[0]=AT2HFuSrPO6gS3dz1V2ynvdvBre-u0vJATOtxdP_K8xMyhiHFCUPkrwl-wje6T3TnKtW_mDnMwLh4NkQHAJVSmMQJ4aNNo50ZB_Qgorrov2ErXj-vhUdXiadFGM9EVb_HhSbteiv4ZpIXt8uvitVYzrmbc3s\">www.vuotalo.fi</a> </p>" }, "provider": null, "name": { "fi": "Valoa Vuotalossa -perhetapahtuma" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269891/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270214", "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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5785, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-01T12:23:24.257275Z", "last_modified_time": "2023-11-01T12:23:24.257295Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E97CC6D2-026C-4271-A746-A10D64E695BC}/107178", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5785/?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-11-01T12:23:24.227607Z", "last_modified_time": "2023-11-04T15:23:31.432407Z", "date_published": "2023-11-01T10:00:00Z", "start_time": "2023-11-04T12:00:00Z", "end_time": "2023-11-04T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tule mukaan Halloween-henkeen kirjastossa yhdessä perheen kanssa!" }, "description": { "fi": "<h3>Tule mukaan Halloween-henkeen yhdessä perheen kanssa!</h3><p>Sellon kirjaston lastenosastolla askarrellaan yhdessä kammottavia hahmoja klo 14 eteenpäin! Yhteisen askartelutuokion jälkeen kokoonnutaan yhteen katsomaan teemaan sopiva lastenelokuva Coco. Tervetuloa mukaan! Pukeudu ja tule nauttimaan kauhun ja jännityksen päivästä.</p><p>Kuva: <a href=\"https://www.pexels.com/fi-fi/kuva/loma-luova-tytto-sumea-5859184/\">Charles Parker</a></p>" }, "provider": null, "name": { "fi": "Lasten Halloween" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270214/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59726", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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": false, "offer_price_groups": [], "price": { "fi": "38,50/43,50/55/65 €", "sv": "38,50/43,50/55/65 €", "en": "38,50/43,50/55/65 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3369803", "sv": "https://www.lippu.fi/eventseries/name-3369803", "en": "https://www.lippu.fi/eventseries/name-3369803" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4132, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:20:53.072771Z", "last_modified_time": "2023-09-07T14:20:53.072799Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_723834.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4132/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:20:52.899429Z", "last_modified_time": "2023-11-02T21:13:05.991227Z", "date_published": null, "start_time": "2023-09-03T16: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, "location_extra_info": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/249DB97C718529BD59B7B340A050F55D/SIMRIT_Live_in_Helsinki_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/249DB97C718529BD59B7B340A050F55D/SIMRIT_Live_in_Helsinki_", "en": "http://www.savoyteatteri.fi/en/events/event/249DB97C718529BD59B7B340A050F55D/SIMRIT_Live_in_Helsinki_" }, "provider_contact_info": null, "short_description": { "fi": "SIMRITin kauan odotettu kiertue on tulossa luoksesi! Tule kokemaan musiikin sielua kohottava ja kantava voima. Matkaamme syvyyksistä korkeuksiin! Hanki lippusi ennen kuin ne myydään loppuun.", "sv": "Den länge efterlängtade SIMRIT Tour kommer snart till dig! Kom och upplev denna ljudkraft som höjer sinnena och transporterar själen. Det blir en konsert att njuta och lyftas av! Skaffa era biljetter innan de tar slut.", "en": "The long awaited SIMRIT Tour is headed your way! Come experience this mind-elevating, soul-transporting sonic force. We are going to get down, and lift up! Grab your tickets while they last." }, "description": { "fi": "<p>SIMRITin kauan odotettu kiertue on tulossa luoksesi! Tule kokemaan musiikin sielua kohottava ja kantava voima. Matkaamme syvyyksistä korkeuksiin! Hanki lippusi ennen kuin ne myydään loppuun.</p><p>SIMRIT on niittänyt mainetta esiintymällä täysille teatteri- ja konserttisaleille, julkaisemalla listahiteiksi nousseita albumeita, keräämällä intohimoisia faneja ympäri maailman sekä luomalla omaa musiikin suuntaansa. SIMRIT on kokemus, joka ylittää genrerajat monivivahteisella ja omalaatuisella instrumenttien ja perinteiden sekoituksellaan. Sen juuret ovat laulaja-lauluntekijä Simrit Kaurin elämässä, joka alkoi Kreikan Ateenassa ja jatkui kreikkalaisamerikkalaisten adoptiovanhempien luona Etelä-Carolinassa. Perinteinen kreikkalainen musiikki, roots reggae, Motown ja monet muut ovat vaikuttaneet merkittävästi Simritin ainutlaatuiseen musiikkiin. Lisää syvyyttä SIMRITin sointiin ja esityksiin tuo Salif Bamakora 21-kielisellä länsiafrikkalaisella korallaan, Shannon Hayden sähkösellollaan (jonka äänen hän taittaa uusiin ulottuvuuksiin pedaalilaudalla), Jared May bassollaan ja Moog-syntetisaattorillaan sekä Devon Ashley rummuillaan ja muilla lyömäsoittimillaan. SIMRITin musiikki on tullut tunnetuksi parantavasta vaikutuksestaan sekä luomastaan hypnoottisesta, varmatahtisesti svengaavasta, unohtumattoman kauniista, särmikkäästä ja mieltä laajentavasta tunnelmasta.</p><p>”Kaikki SIMRITin jäsenet ovat oman alansa mestareita... Mutta henkilökohtaista taituruutta tärkeämpää on artistien keskinäinen kemia... Kokonaisuus on huomattavasti enemmän kuin osiensa summa.” - OZ FRITZ (Grammy-palkittu ääniteknikko)</p><p>”Jos revontulet osaisivat laulaa, Simrit olisi niiden ääni. Ajaton, vahva ja eteerinen kuin valaan laulu...” - LA YOGA</p><p>”Simritille laulaminen ei ole esiintymistä, se on pyhän palvontaa. Hänen äänensä, musiikkinsa ja opetuksensa heijastavat hänestä vaivattomasti kumpuavaa omistautumista. Tämä omistautuminen on lahja, taito muiden yläpuolella, joka tulee johtamaan tuhansia olemisen ja tietoisuuden keveyteen, joka on nykyaikana ensiarvoisen tärkeää ihmisille.” - SNATAM KAUR</p><p>”Ensinnäkin, olen Simritin suuri fani. Hänen melodiantajunsa, energiansa ja musikaalisuutensa erottavat hänen muista. Minulle Simrit on tämän uuden ajan ääni.” - BELINDA CARLISLE (Rock & Roll Hall of Fame, The Go-Go’s)</p><p>Useita listaykkösiksi nousseita albumeita – iTunes World Music Charts</p><p>Kesto 2,5 h, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>", "sv": "<p>Den länge efterlängtade SIMRIT Tour kommer snart till dig! Kom och upplev denna ljudkraft som höjer sinnena och transporterar själen. Det blir en konsert att njuta och lyftas av! Skaffa era biljetter innan de tar slut.</p><p>SIMRIT skapar vågor med fullpackade teatrar och konserthus, album som toppar listorna och dyrkande fans världen över, vilket är drivkraften bakom en påtaglig musikrörelse. SIMRIT-upplevelsen som överskrider genrer med dess eklektiska och excentriska blandning av instrument och rötter är centrerad runt huvudsångaren-låtskrivaren Simrit Kaur, som föddes i Aten i Grekland och adopterades av en grekamerikansk familj till South Carolina, USA. Traditionell grekisk musik, roots reggae, motown bland många andra har visat sig haft ett djupt inflytande medan Simrit har lösgjort sitt eget unika sound. Salif Bamakora på 21-strängad västafrikansk kora, Shannon Hayden på elektrisk cello (som hon får fram vilda effekter på via en pedalbräda) och gitarr, Jared May på bas och Moog-synt samt Devon Ashley på trummor och andra slagverksinstrument fyller ut SIMRIT:s sound och upplevelse. SIMRIT:s musik är känd för sin helande effekt: hypnotisk, deep-pocket-groove, suggestiv skönhet, edge och medvetandevidgande atmosfär.</p><p>\"Var och en i SIMRIT är mästare på sin konst... Ännu viktigare än den individuella skickligheten är deras kollektiva samspel... Det hela är så påtagligt mycket större än summan av delarna.\" - OZ FRITZ (Grammy-prisvinnande ljudtekniker)</p><p>”Om man tänker sig att norrskenet kunde sjunga: så är Simrits röst. Tidlös, stark och eterisk som valens sång...” - LA YOGA</p><p>”För Simrit är sjungandet inte att uppträda, det är en lovsång till det gudomliga. Hennes röst, hennes musik och hennes lära speglar denna hängivelse som verkar strömma så lätt från henne. Denna hängivelse är en gåva, en begåvning bortom alla andra som kommer att leda tusentals till varandets lätthet och medvetandet som är så vitalt för människor i dessa tider.” - SNATAM KAUR</p><p>”För det första så är jag ett äkta Simrit-fan. Hennes melodikänsla, energi och musikalitet gör henne unik. Simrit är för mig rösten för denna nya tid och era.” - BELINDA CARLISLE (Rock 'n Roll Hall of Fame, The Go-Go's)</p><p>Flera nr 1-album – iTunes World Music Charts</p><p>Längd 2,5 timmar, ingen paus</p><p>Parketten är avsedd för servering av alkohol för vuxna, 18 år eller äldre. Balkongen är för personer i alla åldrar; ingen alkohol serveras.</p>", "en": "<p>The long awaited SIMRIT Tour is headed your way! Come experience this mind-elevating, soul-transporting sonic force. We are going to get down, and lift up! Grab your tickets while they last.</p><p>SIMRIT is creating waves with packed theaters and concert halls, chart-topping albums, and raving fans world-wide, powering a palpable musical movement. Transcending genres with their eclectic and eccentric blend of instruments and lineages, the SIMRIT experience is based around lead singer-songwriter, Simrit Kaur, born in Athens, Greece and adopted by Greek Americans into South Carolina. Traditional Greek music, Roots Reggae, Motown among many others, have proven deeply influential as Simrit has unlocked her own unique sound. Filling out the SIMRIT sound and experience is Salif Bamakora on the 21-string West African kora, Shannon Hayden on electric cello (which she runs through a pedal board with wild effects) and guitar, Jared May on bass & Moog synthesizer and Devon Ashley on drums and other percussion. SIMRIT's music is known for its healing effect; hypnotic, deep-pocket groove, haunting beauty, edge, and mind-bending atmosphere.</p><p>\"Everyone in SIMRIT is a master of their craft...Even more critical than individual skill is the fact that their collective chemistry...Their whole is substantially greater than the sum of its parts.\" - OZ FRITZ (Grammy Award Winning Sound Engineer)</p><p>\"Imagine that the Aurora Borealis could sing: that’s Simrit’s voice. Timeless, Strong, and Ethereal as a whale’s song...” - LA YOGA</p><p>\"For Simrit, singing is not a performance, it is a sacred worship of the Divine. Her voice, her music, and her teaching, reflect this devotion which seems to come from her so effortlessly. This devotion is a gift, a talent beyond any, that will lead thousands into the lightness of being and awareness that is so vital to humanity in this day and age.\" - SNATAM KAUR</p><p>“First of all, I’m such a fan of Simrit. Her sense of melody, her energy, and her musicality set her apart. Simrit, to me, is the voice of this new day and age.” - BELINDA CARLISLE (Rock 'n Roll Hall of Fame, The Go-Go's)</p><p>Multiple #1 Albums - iTunes World Music Charts</p><p>Duration 2,5 hours, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "provider": { "fi": "Simrit Kaur Music", "sv": "Simrit Kaur Music", "en": "Simrit Kaur Music" }, "name": { "fi": "SIMRIT Live in Helsinki", "sv": "SIMRIT Live in Helsinki", "en": "SIMRIT Live in Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59726/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269684", "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:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5476, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T06:54:52.547012Z", "last_modified_time": "2023-10-16T06:54:52.547031Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B74AE033-5933-4A58-8C27-E9622AB061F1}/106795", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5476/?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-10-16T07:57:35.378370Z", "last_modified_time": "2023-11-01T21:23:42.332667Z", "date_published": "2023-10-15T21:00:00Z", "start_time": "2023-10-29T08:00:00Z", "end_time": "2023-10-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin." }, "description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin. Haastavia ja viihdyttäviä pulmia eri puolilla kirjastoa ratkaisseet osallistuvat kussakin kirjastossa arvontoihin, joiden palkintoina on 2 hengen liput <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7icjku\">Tunturin tarina -elokuvakonserttiin 2.12.</a> ja lisäpalkintoina hopea- ja pronssisijalle kahden hengen liput Luonto-festivaalin <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7dxfvi\">After Work -konserttiin 17.11.</a> Ellet halua lippuja, on vaihtoehtoisena palkintona luonnon innoittamaa uutta klassista musiikkia sisältävä <a href=\"https://www.espoo.fi/fi/tapiola-sinfonietta/levytykset\">Northlands -cd-levy</a>. Arvonnan voittajille ilmoitetaan sähköpostilla ja tekstiviestillä. Lippujahti järjestetään kirjastoissa 23.10. - 1.11. Arvonnat suoritetaan 2.11." }, "provider": null, "name": { "fi": "Espoon kirjastojen ja Tapiola Sinfoniettan lippujahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269684/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269673", "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:10690/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5476, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T06:54:52.547012Z", "last_modified_time": "2023-10-16T06:54:52.547031Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B74AE033-5933-4A58-8C27-E9622AB061F1}/106795", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5476/?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-10-16T06:57:55.075034Z", "last_modified_time": "2023-11-01T21:23:42.261959Z", "date_published": "2023-10-15T21:00:00Z", "start_time": "2023-10-29T08:00:00Z", "end_time": "2023-10-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin." }, "description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin. Haastavia ja viihdyttäviä pulmia eri puolilla kirjastoa ratkaisseet osallistuvat kussakin kirjastossa arvontoihin, joiden palkintoina on 2 hengen liput <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7icjku\">Tunturin tarina -elokuvakonserttiin 2.12.</a> ja lisäpalkintoina hopea- ja pronssisijalle kahden hengen liput Luonto-festivaalin <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7dxfvi\">After Work -konserttiin 17.11.</a> Ellet halua lippuja, on vaihtoehtoisena palkintona luonnon innoittamaa uutta klassista musiikkia sisältävä <a href=\"https://www.espoo.fi/fi/tapiola-sinfonietta/levytykset\">Northlands -cd-levy</a>. Arvonnan voittajille ilmoitetaan sähköpostilla ja tekstiviestillä. Lippujahti järjestetään kirjastoissa 23.10. - 1.11. Arvonnat suoritetaan 2.11." }, "provider": null, "name": { "fi": "Espoon kirjastojen ja Tapiola Sinfoniettan lippujahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269673/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269658", "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: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:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5476, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T06:54:52.547012Z", "last_modified_time": "2023-10-16T06:54:52.547031Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B74AE033-5933-4A58-8C27-E9622AB061F1}/106795", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5476/?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-10-16T06:57:52.669769Z", "last_modified_time": "2023-11-01T21:23:42.188898Z", "date_published": "2023-10-15T21:00:00Z", "start_time": "2023-10-29T08:00:00Z", "end_time": "2023-10-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin." }, "description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin. Haastavia ja viihdyttäviä pulmia eri puolilla kirjastoa ratkaisseet osallistuvat kussakin kirjastossa arvontoihin, joiden palkintoina on 2 hengen liput <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7icjku\">Tunturin tarina -elokuvakonserttiin 2.12.</a> ja lisäpalkintoina hopea- ja pronssisijalle kahden hengen liput Luonto-festivaalin <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7dxfvi\">After Work -konserttiin 17.11.</a> Ellet halua lippuja, on vaihtoehtoisena palkintona luonnon innoittamaa uutta klassista musiikkia sisältävä <a href=\"https://www.espoo.fi/fi/tapiola-sinfonietta/levytykset\">Northlands -cd-levy</a>. Arvonnan voittajille ilmoitetaan sähköpostilla ja tekstiviestillä. Lippujahti järjestetään kirjastoissa 23.10. - 1.11. Arvonnat suoritetaan 2.11." }, "provider": null, "name": { "fi": "Espoon kirjastojen ja Tapiola Sinfoniettan lippujahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269658/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269639", "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: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:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5476, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-16T06:54:52.547012Z", "last_modified_time": "2023-10-16T06:54:52.547031Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B74AE033-5933-4A58-8C27-E9622AB061F1}/106795", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5476/?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-10-16T06:57:51.978866Z", "last_modified_time": "2023-11-01T21:23:42.115414Z", "date_published": "2023-10-15T21:00:00Z", "start_time": "2023-10-29T08:00:00Z", "end_time": "2023-10-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin." }, "description": { "fi": "Viidessä kirjastossa (Entresse, Iso Omena, Lippulaiva, Sello ja Tapiola) järjestetään aikuisille suunnattu lippujahti, jonka palkintoina on lippuja Tapiola Sinfoniettan konsertteihin. Haastavia ja viihdyttäviä pulmia eri puolilla kirjastoa ratkaisseet osallistuvat kussakin kirjastossa arvontoihin, joiden palkintoina on 2 hengen liput <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7icjku\">Tunturin tarina -elokuvakonserttiin 2.12.</a> ja lisäpalkintoina hopea- ja pronssisijalle kahden hengen liput Luonto-festivaalin <a href=\"https://www.espoo.fi/fi/tapahtumat/espooevents:agea7dxfvi\">After Work -konserttiin 17.11.</a> Ellet halua lippuja, on vaihtoehtoisena palkintona luonnon innoittamaa uutta klassista musiikkia sisältävä <a href=\"https://www.espoo.fi/fi/tapiola-sinfonietta/levytykset\">Northlands -cd-levy</a>. Arvonnan voittajille ilmoitetaan sähköpostilla ja tekstiviestillä. Lippujahti järjestetään kirjastoissa 23.10. - 1.11. Arvonnat suoritetaan 2.11." }, "provider": null, "name": { "fi": "Espoon kirjastojen ja Tapiola Sinfoniettan lippujahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269639/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 4977, "next": "