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&hide_recurring_children=true&page=598
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=599", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=597" }, "data": [ { "id": "helmet:276349", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?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:10840/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6943, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-30T11:23:51.511810Z", "last_modified_time": "2023-12-30T11:23:51.511833Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1EFFD7B8-0AAE-4B20-9096-8403A3F42316}/108353", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6943/?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-12-30T11:23:51.477810Z", "last_modified_time": "2023-12-30T11:23:51.595967Z", "date_published": "2023-12-30T09:53:00Z", "start_time": "2024-01-05T13:00:00Z", "end_time": "2024-01-05T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Merenneidon laulu" }, "description": { "fi": "<p>Nairi Azezian, huilu<br> Nazig Azezian, piano<br><br> Sibelius - Reinecke - Kaski - Na</p><p>Veden hengettäret, merenneidot, ovat kiehtoneet säveltäjiä aikakaudesta toiseen. Konsertissa kuultava Carl Reinecken romanttinen sonaatti huilulle ja pianolle on saanut inspiraationsa Friedrich de la Motte Fouquén novellista \"Undine\" (Merenneito). Tarinassa merenneito lähetetään ihmisten joukkoon, jotta hän voisi naimisiin mennessään saada kuolevaisen sielun ja moraalin. Petetyksi tullessaan merenneidon on kuitenkin hukutettava rakkaansa kyyneliin. Korealainen säveltäjä, SukJu Na, omisti \"Merenneidon laulu\" -sävellyksensä huilisti Nairi Azezianille. Laulavalle huilistille vuonna 2013 sävelletty teos mahdollistaa lukuisia erilaisia tulkintoja; esittäjä voi ottaa niin merenneidon, merimiehen tai tuulen roolin. Sibeliuksen ja Kasken teokset maalailevat vahvoille tarinoille mystisen sävelmaiseman</p><p>Sisarukset huilisti Nairi Azezian ja pianisti Nazig Azezian valmistuivat musiikin maisteriksi Sibelius-Akatemiasta vuonna 2014.</p><p>Nairi Azezian on toiminut sekä kamarimuusikkona että orkesterihuilistina monissa eri kokoonpanoissa, mm. Zagros-uuden musiikin kokoonpanossa, Helsingin kaupunginorkesterin soolopikkolistina 2016 sekä Tampere Filharmonian vuorottelevana äänenjohtajana 2018. Nairi opiskeli huilunsoiton lisäksi myös laulua ja toimi Helsingin kamarikuoron 2. alttona 2019-2015. Orkesterikokemuksen siivittämänä Nairi valikoitui Jorma Panulan oppilaaksi ja opiskeli Panulan johdolla orkesterijohtoa 2018-2022. Nairi johtaa tällä hetkellä Toimela Brass-vaskiorkesteria sekä vuodesta 2024 eteenpäin myös Vantaan musiikkiopiston A-puhallinorkesteria.</p><p>Valmistumisensa jälkeen pianisti Nazig Azezian on konsertoinut aktiivisesti Suomessa ja ulkomailla. Vuonna 2019 Azezian sai Konserttikeskuksen Inkku-palkinnon yli puolen miljoonan lapsen tavoittamisesta klassisella musiikilla, ja vuonna Finlandia Foundation National myönsi hänelle Award of Excellence -palkinnon ansioista suomalaisen taidemusiikin ja erityisesti Sibeliuksen musiikin tunnetuksi tekemisestä Yhdysvalloissa. Vuonna 2015 Azezian, sellisti Jussi Makkonen ja kuvittaja ja kirjailija Katri Kirkkopelto julkaisivat Sibeliuksen elämästä kertovan Soiva metsä -lasten kuvakirjan (Lasten Keskus). Helmikuussa 2019 he julkaisivat kirjasta ja levystä koostuvan Lintu Sininen -kokonaisuuden. Lintu Sininen -levyllä Makkonen ja Azezian tulkitsevat tilaustyönä toteutetun Jonne Valtosen teoksen James Lowen johtaman Vaasan kaupunginorkesterin solisteina.</p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Tervetuloa loppiaisaaton iltapäiväkonserttiin Rikhardinkadun kirjaston Kirjatorniin!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276349/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270975", "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:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6137, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-22T12:22:15.964766Z", "last_modified_time": "2024-02-06T13:38:04.426884Z", "name": "", "url": "https://www.helmet.fi/download/noname/{858F4E08-CD67-45E4-9C01-27F2468CD759}/107635", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6137/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-12-30T04:23:50.848692Z", "last_modified_time": "2023-12-30T04:23:50.933725Z", "date_published": "2023-11-21T22:00:00Z", "start_time": "2023-12-18T13:00:00Z", "end_time": "2023-12-18T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "en": "Cultural counselling services for basic education in Arabic, Hindi/English, Russian" }, "description": { "en": "<p>The City of Espoo offers cultural counselling services of basic education in the native language in Entresse Library from 11.12.2023 to 13.6.2024 as follows:</p><p>Mondays at 15 - 16:30 Arabic, Hindi/English, Russian</p><p>Wednesdays 15:00 - 16:30 Albanian, Somali, Ukrainian/ Russian</p><p>Thursdays from 15:00 to 16:30 Arabic, Dari/Farsi/Kurdish, Chinese, Thai/Lao</p><p>We serve clients in the following areas: service counselling, finding a hobby, filling in school documents and forms, Wilma system and cooperation with the school.</p><p>There will be no guidance on 6 December, 24 - 31 December 2023, 1 January, 6 January, 9-10 January, 15 - 17 January 2024.</p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "en": "Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä Entressen kirjastossa 11.12.2023 - 13.6.2024 seuraavasti: maanantaisin klo 15 - 16:30 arabia, hindi/ englanti, venäjä keskiviikkoisin klo 15 - 16:30 albania, somali, ukraina/ venäjä torstaisin klo 15 - 16:30 arabia, dari/ farsi/ kurdi, kiina, thai/ lao" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270975/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:272479", "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:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6137, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-22T12:22:15.964766Z", "last_modified_time": "2024-02-06T13:38:04.426884Z", "name": "", "url": "https://www.helmet.fi/download/noname/{858F4E08-CD67-45E4-9C01-27F2468CD759}/107635", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6137/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-12-30T04:23:50.711642Z", "last_modified_time": "2023-12-30T04:23:50.811136Z", "date_published": "2023-12-07T08:31:00Z", "start_time": "2023-12-18T13:00:00Z", "end_time": "2023-12-18T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "sv": "Rådgivningstjänster för kulturrådgivare i grundskolan Arabiska, Hindi/Engelska, Ryska" }, "description": { "sv": "<p>Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen i Entresse-biblioteket från 11.12.2023 till 13.6.2024 enligt följande</p><p>måndagar kl. 15-16.30 arabiska, hindi/engelska, ryska</p><p>Onsdagar kl. 15.00 - 16.30 Albanska, Somaliska, Ukrainska/Ryska</p><p>Torsdagar kl 15:00 - 16:30 Arabiska, Dari/Farsi/Kurdiska, Kinesiska, Thai/Lao</p><p>Vi betjänar kunder inom följande områden: servicerådgivning, hitta en hobby, fylla i skoldokument och blanketter, Wilma-systemet och samarbete med skolan.</p><p>Ingen vägledning den 6 december, 24-31 december 2023, 1 januari, 6 januari, 9-10 januari, 15 - 17 januari 2024.</p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "sv": "Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen i Entresse-biblioteket från 11.12.2023 till 13.6.2024 enligt följande måndagar kl. 15-16.30 arabiska, hindi/engelska, ryska Onsdagar kl. 15.00 - 16.30 Albanska, Somaliska, Ukrainska/Ryska Torsdagar kl 15:00 - 16:30 Arabiska, Dari/Farsi/Kurdiska, Kinesiska, Thai/Lao" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270979", "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:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6137, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-22T12:22:15.964766Z", "last_modified_time": "2024-02-06T13:38:04.426884Z", "name": "", "url": "https://www.helmet.fi/download/noname/{858F4E08-CD67-45E4-9C01-27F2468CD759}/107635", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6137/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-12-30T04:23:41.341274Z", "last_modified_time": "2023-12-30T04:23:41.426708Z", "date_published": "2023-11-21T22:00:00Z", "start_time": "2023-12-11T13:00:00Z", "end_time": "2023-12-11T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "en": "Cultural counselling services for basic education in Arabic, Hindi/English, Russian" }, "description": { "en": "<p>The City of Espoo offers cultural counselling services of basic education in the native language in Entresse Library from 11.12.2023 to 13.6.2024 as follows:</p><p>Mondays at 15 - 16:30 Arabic, Hindi/English, Russian</p><p>Wednesdays 15:00 - 16:30 Albanian, Somali, Ukrainian/ Russian</p><p>Thursdays from 15:00 to 16:30 Arabic, Dari/Farsi/Kurdish, Chinese, Thai/Lao</p><p>We serve clients in the following areas: service counselling, finding a hobby, filling in school documents and forms, Wilma system and cooperation with the school.</p><p>There will be no guidance on 6 December, 24 - 31 December 2023, 1 January, 6 January, 9-10 January, 15 - 17 January 2024.</p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "en": "Espoon kaupunki tarjoaa perusopetuksen kulttuuriohjaajien neuvontapalveluja omalla äidinkielellä Entressen kirjastossa 11.12.2023 - 13.6.2024 seuraavasti: maanantaisin klo 15 - 16:30 arabia, hindi/ englanti, venäjä keskiviikkoisin klo 15 - 16:30 albania, somali, ukraina/ venäjä torstaisin klo 15 - 16:30 arabia, dari/ farsi/ kurdi, kiina, thai/ lao" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270979/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:272483", "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:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11699/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6137, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-22T12:22:15.964766Z", "last_modified_time": "2024-02-06T13:38:04.426884Z", "name": "", "url": "https://www.helmet.fi/download/noname/{858F4E08-CD67-45E4-9C01-27F2468CD759}/107635", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6137/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-12-30T04:23:41.155862Z", "last_modified_time": "2023-12-30T04:23:41.279623Z", "date_published": "2023-12-07T08:31:00Z", "start_time": "2023-12-11T13:00:00Z", "end_time": "2023-12-11T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "sv": "Rådgivningstjänster för kulturrådgivare i grundskolan Arabiska, Hindi/Engelska, Ryska" }, "description": { "sv": "<p>Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen i Entresse-biblioteket från 11.12.2023 till 13.6.2024 enligt följande</p><p>måndagar kl. 15-16.30 arabiska, hindi/engelska, ryska</p><p>Onsdagar kl. 15.00 - 16.30 Albanska, Somaliska, Ukrainska/Ryska</p><p>Torsdagar kl 15:00 - 16:30 Arabiska, Dari/Farsi/Kurdiska, Kinesiska, Thai/Lao</p><p>Vi betjänar kunder inom följande områden: servicerådgivning, hitta en hobby, fylla i skoldokument och blanketter, Wilma-systemet och samarbete med skolan.</p><p>Ingen vägledning den 6 december, 24-31 december 2023, 1 januari, 6 januari, 9-10 januari, 15 - 17 januari 2024.</p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "sv": "Esbo stad erbjuder kulturrådgivning på modersmålet inom den grundläggande utbildningen i Entresse-biblioteket från 11.12.2023 till 13.6.2024 enligt följande måndagar kl. 15-16.30 arabiska, hindi/engelska, ryska Onsdagar kl. 15.00 - 16.30 Albanska, Somaliska, Ukrainska/Ryska Torsdagar kl 15:00 - 16:30 Arabiska, Dari/Farsi/Kurdiska, Kinesiska, Thai/Lao" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:275340", "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: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:10673/?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:10801/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12027/?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:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6744, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-20T09:19:57.246688Z", "last_modified_time": "2023-12-20T09:19:57.246702Z", "name": "", "url": "https://www.helmet.fi/download/noname/{C0F7D4FC-1B97-4E16-92BB-2E571B491CCC}/108192", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6744/?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:p11617/?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" } ], "created_time": "2023-12-20T09:19:57.227989Z", "last_modified_time": "2023-12-29T14:21:01.679223Z", "date_published": "2023-12-23T06:00:00Z", "start_time": "2023-12-23T11:00:00Z", "end_time": "2024-01-05T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Loma-ajan tapahtumia lapsille ja nuorille" }, "description": { "fi": "<p>Ison Omenan kirjastossa tapahtuu loma-aikana!</p><p> <strong>23.12.</strong> Jouluelokuva klo 13, VOX</p><p> <strong>28.12.</strong> Askartelua klo 13:30-15:30 </p><p> <strong>3.1. </strong>Maalauspaja klo 13, VOX</p><p> <strong>4.1</strong>. Gang Beasts -turnaus klo 13, VOX</p><p> Pingis-turnaus klo 16, VOX </p><p> <strong>5.1.</strong> K-12 peli-ilta nuorille, klo 17:30-19:30, VOX</p><p> <em>Kuva: Pixabay</em> </p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Lasten ja nuorten loma-ajan tapahtumia." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:275340/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276291", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?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:11687/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4856, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-20T15:47:43.112218Z", "last_modified_time": "2024-02-06T13:38:13.817229Z", "name": "", "url": "https://www.helmet.fi/download/noname/{59D538C2-8CB2-461C-A3A3-C66088AEFF43}/100976", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4856/?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-12-29T14:21:01.108033Z", "last_modified_time": "2023-12-29T14:21:01.172206Z", "date_published": "2023-12-29T13:36:34.803000Z", "start_time": "2024-01-03T15:30:00Z", "end_time": "2024-01-03T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Shanghai-pelikorttipiiri" }, "description": { "fi": "<p>Malminkartanon kirjastossa kokoontuu viikoittain korttipelipiiri, jossa pelataan helppoa mutta vähitellen vaikeutuvaa Shanghai-peliä. Yhden pelin kesto on noin 1,5 tuntia, mutta osallistua voi myös lyhyemmän ajan. Tervetuloa mukaan, aikaisempaa kokemusta pelistä et tarvitse. </p><p> <a href=\"https://fi.wikipedia.org/wiki/Shanghai_(peli)\">https://fi.wikipedia.org/wiki/Shanghai_(peli)</a> </p><p> <a href=\"https://www.korttipelit.net/shanghai\">https://www.korttipelit.net/shanghai</a> </p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Shanghai-pelikorttipiiri Malminkartanon kirjastossa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276291/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276336", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?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:10821/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T13:40:18.002899Z", "last_modified_time": "2024-02-06T13:38:03.562134Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6BC1EF6F-971F-4486-B604-3B8DCF773325}/38282", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4791/?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-12-29T14:21:00.709709Z", "last_modified_time": "2023-12-29T14:21:00.761076Z", "date_published": "2023-12-29T13:42:38.463000Z", "start_time": "2024-01-01T08:00:00Z", "end_time": "2024-01-01T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Muistikerho" }, "description": { "fi": "<p> <em> <strong>Keväällä 2024</strong> </em> <strong> <em> <strong> </strong> </em>Muistikerho kokoontuu kerran viikossa maanantaina klo 10-11!</strong> </p><p>Tervetuloa mukaan aivojumppaan!<br> </p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Tarjolla kysymyksiä, arvoituksia, sanahakuja, ym. huviksi ja hyödyksi." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276336/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276333", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?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:10821/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T13:40:18.002899Z", "last_modified_time": "2024-02-06T13:38:03.562134Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6BC1EF6F-971F-4486-B604-3B8DCF773325}/38282", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4791/?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-12-29T14:20:59.901465Z", "last_modified_time": "2023-12-29T14:20:59.956377Z", "date_published": "2023-12-29T13:42:38.463000Z", "start_time": "2023-12-25T08:00:00Z", "end_time": "2023-12-25T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Muistikerho" }, "description": { "fi": "<p> <em> <strong>Keväällä 2024</strong> </em> <strong> <em> <strong> </strong> </em>Muistikerho kokoontuu kerran viikossa maanantaina klo 10-11!</strong> </p><p>Tervetuloa mukaan aivojumppaan!<br> </p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Tarjolla kysymyksiä, arvoituksia, sanahakuja, ym. huviksi ja hyödyksi." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276333/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276343", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?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:10821/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T13:40:18.002899Z", "last_modified_time": "2024-02-06T13:38:03.562134Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6BC1EF6F-971F-4486-B604-3B8DCF773325}/38282", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4791/?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-12-29T14:20:57.587213Z", "last_modified_time": "2023-12-29T14:20:57.645919Z", "date_published": "2023-12-29T13:42:38.463000Z", "start_time": "2023-12-18T08:00:00Z", "end_time": "2023-12-18T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Muistikerho" }, "description": { "fi": "<p> <em> <strong>Keväällä 2024</strong> </em> <strong> <em> <strong> </strong> </em>Muistikerho kokoontuu kerran viikossa maanantaina klo 10-11!</strong> </p><p>Tervetuloa mukaan aivojumppaan!<br> </p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Tarjolla kysymyksiä, arvoituksia, sanahakuja, ym. huviksi ja hyödyksi." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276343/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276330", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8220/?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:10821/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4791, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-15T13:40:18.002899Z", "last_modified_time": "2024-02-06T13:38:03.562134Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6BC1EF6F-971F-4486-B604-3B8DCF773325}/38282", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4791/?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-12-29T14:20:52.624815Z", "last_modified_time": "2023-12-29T14:20:52.758633Z", "date_published": "2023-12-29T13:42:38.463000Z", "start_time": "2023-12-11T08:00:00Z", "end_time": "2023-12-11T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Muistikerho" }, "description": { "fi": "<p> <em> <strong>Keväällä 2024</strong> </em> <strong> <em> <strong> </strong> </em>Muistikerho kokoontuu kerran viikossa maanantaina klo 10-11!</strong> </p><p>Tervetuloa mukaan aivojumppaan!<br> </p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Tarjolla kysymyksiä, arvoituksia, sanahakuja, ym. huviksi ja hyödyksi." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276330/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276275", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6939, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-29T13:21:17.575917Z", "last_modified_time": "2024-02-06T13:38:10.279394Z", "name": "", "url": "https://www.helmet.fi/download/noname/{AC23DE9A-EFF9-44AC-A135-0B718D9AFD41}/108352", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6939/?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-12-29T13:21:17.536332Z", "last_modified_time": "2023-12-29T13:21:17.634495Z", "date_published": "2023-12-28T22:00:00Z", "start_time": "2024-01-03T08:00:00Z", "end_time": "2024-01-03T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Ompelukone- ja saumuriopastus" }, "description": { "fi": "<p>Tarvitsetko apua ompelukoneen tai saumurin käyttöön? Tervetuloa henkilökohtaiseen opastukseen! Opastusta on tarjolla keskiviikkoisin klo 10-11 ja klo 11-12. </p><p>Opastajana toimii Korson Marttojen Ritva Etelämäki.</p><p>Varaa tunnin opastusaika kirjaston infotiskiltä tai soittamalla Lumon kirjastoon, puh. 043 825 1305. </p><p>Lumon kirjaston pajassa on kaksi ompelukonetta sekä yksi saumuri. Ompelukoneet ovat malliltaan Husqvarna Viking Emerald 116, saumuri taas Bernina L450. </p><p> <a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lumon_kirjasto/Lumon_omat/Lumon_kirjaston_paja(215395)\">Lue lisää Lumon kirjaston pajan varustuksesta ja laitteiden varauksesta täältä.</a> </p><p>Tervetuloa!</p><p> . </p><p>Kuva: Cottonbro Studio / Pexels</p>" }, "provider": null, "location_extra_info": { "fi": "Paja" }, "info_url": null, "short_description": { "fi": "Tarvitsetko apua apua ompelukoneen tai saumurin käyttöön? Tervetuloa henkilökohtaiseen opastukseen!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276275/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:272839", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?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:11689/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2677, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:29:19.827616Z", "last_modified_time": "2024-02-06T13:38:37.409314Z", "name": "", "url": "https://www.helmet.fi/download/noname/{79E3F4ED-CDB5-42B4-980E-F01A71323EE8}/99817", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2677/?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-12-08T07:24:18.194295Z", "last_modified_time": "2023-12-28T17:24:18.635212Z", "date_published": "2023-12-08T05:49:00Z", "start_time": "2024-01-18T15:30:00Z", "end_time": "2024-01-18T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Käsityöpiiri Koukku" }, "description": { "fi": "<p>Neulotko? Virkkaatko? Kirjotko? Teetkö muita käsitöitä?<br> Jos etsit kässäilyseuraa, tule Töölön kirjastoon kerran kuussa torstai-iltaisin ja ota oma projektisi mukaan. <br><br> Tapaamiset 4. kerroksen ryhmätilassa torstaisin 18.1., 15.2., 21.3., 18.4. ja 16.5. klo 17.30-19.30.<br><br> Piipahda hetkeksi tai tule mukaan koko illaksi, oman aikataulusi mukaan.<br><br> Lämpimästi tervetuloa!<br><br><a href=\"https://www.helmet.fi/toolonkirjasto\">Töölön kirjasto</a></p><br>" }, "provider": null, "location_extra_info": { "fi": "Ryhmätila 4, 4. krs" }, "info_url": null, "short_description": { "fi": "Tervetuloa tekemään käsitöitä yhdessä muiden kanssa!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272839/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:272978", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?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:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6591, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-10T12:23:08.750496Z", "last_modified_time": "2023-12-10T12:23:08.750519Z", "name": "", "url": "https://www.helmet.fi/download/noname/{69BFEC25-1584-435E-AD5A-8732429933AE}/108002", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6591/?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-12-10T12:23:08.692960Z", "last_modified_time": "2023-12-28T17:24:16.497318Z", "date_published": "2023-12-10T11:15:00Z", "start_time": "2024-01-17T16:00:00Z", "end_time": "2024-01-17T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Nordic Banjo -duo esiintyy" }, "description": { "fi": "<p> <a href=\"http://nordicbanjo.com\">Nordic Banjo</a> on kahden suomalaisen huippubanjistin muodostama duo, jonka ohjelmisto koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle. Duon tavoitteena on tuoda amerikkalainen banjo osaksi pohjoismaista pelimannikulttuuria ja toisaalta tehdä suomalaista perinnemusiikkia tunnetuksi maailmalla.<br><br> Nordic Banjo yhdistää useat pohjoiseurooppalaiset perinteet, jotka juontavat juurensa metsäsuomalaisten savuisista saunoista ja muinaisten skandinaavien yhteisöllisistä pitkätaloista. Sovitukset laajentavat kunnioittavasti satojen vuosien ajan perheiden, sukulaisten ja naapureiden kautta säilyneitä melodisia ja rytmisiä tekstuureja.<br><br> Afroamerikkalaisen viisikielisen selostamana Nordic Banjo osuu maailmanmusiikin ytimeen. Banjolle idiomaattiset näppäilykuviot ja bordunat yhdistettynä boreaaliseen ääni-ilmastoon luovat mystisen ilmapiirin, jossa voi samanaikaisesti kuulla lukemattomia arkaaisia tarinoita eri kielillä ja murteilla kerrottuna. Nordic Banjon syvin olemus kiteytyy osuvasti suomen kielen sanassa viisikielinen: universaali ääni, joka puhuttelee ihmisiä mantereiden välillä.<br><br> Lauri Häme on helsinkiläinen muusikko ja lauluntekijä. Vuodesta 2004 hän on esiintynyt banjistina ja laulajana indie folk -yhtye Rautakourassa. Instrumentalistina hän kokeilee jatkuvasti uusia perinteisten ja nykyaikaisten äänimaisemien yhdistelmiä. <br><br> Miihkali Jaatinen on monipuolinen musiikin ammattilainen ja yksi Suomen arvostetuimmista banjisteista. Toimi hän sitten kitaristina, banjistina tai tuottajana, leimaa hänen työskentelyään toisaalta tekemisen tinkimättömyys, toisaalta ennakkoluuloton luova heittäytyminen.<br><br> Kokoonpano:<br> Lauri Häme - banjo<br> Miihkali Jaatinen - kitara ja banjo<br><br> Tervetuloa kuuntelemaan perinnemusiikkia!<br><br><br><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\">Töölön kirjasto</a></p>" }, "provider": null, "location_extra_info": { "fi": "Tapahtumatila, 4. krs" }, "info_url": null, "short_description": { "fi": "Nordic Banjo -duon esitys koostuu tunnetuista pohjoismaisen kansanmusiikin kappaleista sovitettuna viisikieliselle bluegrass-banjolle ja kitaralle. Tervetuloa kuuntelemaan!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:272978/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276157", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6883, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-28T12:24:07.520137Z", "last_modified_time": "2023-12-28T12:24:07.520158Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D25F5BFA-C2AE-4754-BF09-66360027597D}/108342", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6883/?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-12-28T12:24:07.490966Z", "last_modified_time": "2023-12-28T17:24:11.727397Z", "date_published": "2023-12-28T11:03:00Z", "start_time": "2024-01-14T14:00:00Z", "end_time": "2024-01-14T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Saako pahan peikon tappaa? – tietokirjan julkistustilaisuus" }, "description": { "fi": "<p>Tietokirjan <strong>”<em>Saako pahan peikon tappaa? – Oikeus ja kohtuus Topeliuksen saduissa</em>”</strong> julkistustilaisuus järjestetään sunnuntaina 14.1.2024 klo 16–17.30 Töölön kirjaston 4. kerroksen tapahtumatilassa (Mika Waltari -sali).<br><br> Teoksen on kirjoittanut oikeustieteen tohtori <strong>Tuula Pere</strong>, ja se on saanut tukea Suomen tietokirjailijat ry:ltä. Kirja sisältää noin viidenkymmenen sadun oikeudellisen analyysin lisäksi laajan katsauksen autonomian ajan yhteiskunnan ja oikeudellisen elämän kehitykseen sekä Topeliuksen ajatuksiin oikeudenmukaisuudesta.<br><br> Kirjailijaa haastattelee oikeushistorian ja roomalaisen oikeuden emeritusprofessori <strong>Jukka Kekkonen</strong>, joka pitää myös alustuksen 1800-luvun yhteiskunnan oikeuskehityksestä. Kommentointiin ja keskusteluun osallistuu lisäksi kirjallisuuden emeritaprofessori <strong>Leena Kirstinä</strong>.<br><br> Avoin yleisötilaisuus. Kahvitarjoilu. Tervetuloa!<br><br> Järjestäjä: <a href=\"https://www.topeliusseura.fi/etusivu/\">Topelius-seura ry.</a><br><br><br><a href=\"https://www.helmet.fi/toolonkirjasto\">Töölön kirjasto</a><br> </p>" }, "provider": null, "location_extra_info": { "fi": "Tapahtumatila, 4. krs" }, "info_url": null, "short_description": { "fi": "Tilaisuus on kaikille avoin, tervetuloa!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276157/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271783", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 6507, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-12-08T07:24:14.634186Z", "last_modified_time": "2023-12-08T07:24:14.634214Z", "name": "", "url": "https://www.helmet.fi/download/noname/{99E1148A-3371-4020-A685-43C47A3F8231}/107829", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6507/?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-12-08T07:24:14.620688Z", "last_modified_time": "2023-12-28T17:24:07.151887Z", "date_published": "2023-11-30T15:52:00Z", "start_time": "2024-01-10T11:00:00Z", "end_time": "2024-01-10T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Harrastus haussa - opastusta senioreille" }, "description": { "fi": "<p>Hei seniori, onko sinulla<strong> </strong><strong>harrastus haussa </strong>tai oletko tukea vailla? <br><br> Töölön palvelukeskuksen henkilökunta esittelee senioreiden palvelukeskustoimintaa ja kertoo monipuolisesta ryhmätoiminnasta, kuntosalitoiminnasta sekä muista liikuntaryhmistä, jotka alkavat keväällä 2024 Töölön palvelukeskuksessa. Ryhmien ohjaajat ovat paikalla, joten heille voi esittää kysymyksiä sekä ilmoittautua ryhmiin.<br><br> Myös sosiaaliohjaajat ovat paikalla ja heiltä voi suoraan kysyä mieltä askarruttavia kysymyksiä.<br><br> Tule katsomaan ja löydä itsellesi mukavaa tekemistä palvelukeskuksesta!<br><br><a href=\"https://www.helmet.fi/toolonkirjasto\">Töölön kirjasto</a></p>" }, "provider": null, "location_extra_info": { "fi": "Tapahtumatila, 4. krs" }, "info_url": null, "short_description": { "fi": "Töölön palvelukeskuksen henkilökunta esittelee palvelukeskuksen toimintaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271783/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271692", "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:10592/?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:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2974, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:38:28.715481Z", "last_modified_time": "2024-02-06T13:39:47.184961Z", "name": "", "url": "https://www.helmet.fi/download/noname/{6E8E5DDE-FC4A-43E7-9B3C-CF1E97839EB2}/92534", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2974/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-11-28T16:21:34.848428Z", "last_modified_time": "2023-12-27T18:20:37.949477Z", "date_published": "2015-07-31T08:31:00Z", "start_time": "2023-12-21T16:00:00Z", "end_time": "2023-12-21T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Novellkafé", "sv": "Novellkafé" }, "description": { "fi": "<p>Välkommen med och njut av berättelser från fjärran och när: <strong>8.2, 14.3, 25.4.</strong></p><p>Biblioteket bjuder på kaffe och te med dopp.</p><p>Novellkaféssa pääset kuuntelemaan tarinoita läheltä ja kaukaa på svenska. Kirjasto tarjoaa kahvia ja teetä sekä pientä suuhunpantavaa.</p><p> <a href=\"http://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Munksnas_bibliotek/Kontaktuppgifter\"> <u>Munksnäs biblioteks kontaktuppgifter</u> </a> </p>", "sv": "<p>Välkommen med och njut av berättelser från fjärran och när: <strong> 8.2, 14.3, 25.4.</strong></p><p>Biblioteket bjuder på kaffe och te med dopp.</p><p> <a href=\"http://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Munksnas_bibliotek/Kontaktuppgifter\"> <u>Munksnäs biblioteks kontaktuppgifter</u> </a> </p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "Novellkafé på Munksnäs bibliotek.", "sv": "Novellkafé på Munksnäs bibliotek." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271692/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:276144", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8362/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2829, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:32:50.461353Z", "last_modified_time": "2024-02-06T13:41:39.499606Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1D365E7C-3B50-48E1-89A1-88093DB06A99}/79383", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2829/?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-12-27T16:24:55.074993Z", "last_modified_time": "2023-12-27T16:24:55.236609Z", "date_published": "2023-12-27T13:48:51.303000Z", "start_time": "2024-02-01T16:00:00Z", "end_time": "2024-02-01T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Iltasatutuokiot Paloheinän kirjastossa" }, "description": { "fi": "<h2>Tervetuloa kuuntelemaan satuja Paloheinän kirjastoon!</h2><p>3–6-vuotiaille suunnatut satutuokiot järjestetään <strong>joka kuun ensimmäinen torstai klo 18.</strong> Myös vanhemmat ovat tervetulleita kuuntelemaan satuja ja nauttimaan tarinatuokiosta lasten kanssa.<br> Satutuokion kesto on noin 20min.</p><p> <b>Kevään kaikki iltasatutuokiot: </b> </p><p>to 1.2. klo 18<br> to 7.3. klo 18<br> to 4.4. klo 18<br> to 2.5. klo 18</p><p>Iltasatutuokioon ei tarvitse ilmoittautua. Satutuokio pidetään lastenosastolla.</p><p>Kuva: Daniel Leiviskä</p>" }, "provider": null, "location_extra_info": null, "info_url": null, "short_description": { "fi": "3-6-vuotiaille ja heidän perheilleen suunnatuissa satutuokioissa kuullaan kivoja tarinoita torstai-iltaisin kerran kuukaudessa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:276144/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:273875", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8192/?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:11699/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2846, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:33:05.004845Z", "last_modified_time": "2024-02-06T13:40:33.332197Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E87F4454-ABB1-4B64-80B4-D996626FBF56}/95710", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2846/?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-12-26T23:24:01.891195Z", "last_modified_time": "2023-12-26T23:24:01.989032Z", "date_published": "2023-12-26T22:00:00Z", "start_time": "2024-01-24T09:00:00Z", "end_time": "2024-01-24T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Enter ry opastaa" }, "description": { "fi": "<h3>Digiopastusta senioreille </h3><p> <strong>Keskiviikkoisin klo 10 - 12 (1h/opastettava) </strong> <b>10.1.- 22.5.2024</b> </p><p>Ajanvaraus ennakkoon p. 09 310 85070 tai Malmin kirjaston asiakaspalvelusta.<strong> </strong><br><br> Enter ry:n opastus on senioreille tarkoitettua maksutonta digitukea. ENTER ry:n vapaaehtoiset vertaisopastajat neuvovat tietokoneiden ja älylaitteiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat. </p><p>Lisätietoa: <a href=\"http://www.entersenior.fi/\">www.entersenior.fi</a></p><p>Lähiopastuksissa suositellaan kasvosuojainten käyttöä, mutta opastettava ja opastaja voivat yhteisesti päättää kasvosuojaimen käyttämättä jättämisestä. Opastukseen tullaan vain oireettomana. Peru opastusaika ajoissa, jos olet sairaana. Lisätietoa: <a href=\"https://www.entersenior.fi/opastus/lahiopastus/\">entersenior/lähiopastus</a></p><p>Tietoa digineuvonnasta kesällä: <a href=\"https://www.entersenior.fi/opastus/lahiopastus/kesa/\">https://www.entersenior.fi/opastus/lahiopastus/kesa/</a></p><p>Kuva: Enter ry</p>" }, "provider": null, "location_extra_info": { "fi": "Malmin kirjasto" }, "info_url": null, "short_description": { "fi": "Enter ry:n vertaisopastukset ajanvarauksella." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:273875/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271963", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3723, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-26T02:45:11.668421Z", "last_modified_time": "2023-08-26T02:45:11.668445Z", "name": "", "url": "https://www.helmet.fi/download/noname/{231DFF60-0156-428E-A695-4C1F6CE01707}/105009", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3723/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [], "created_time": "2023-12-04T15:21:09.155186Z", "last_modified_time": "2023-12-23T00:21:37.052019Z", "date_published": "2023-02-16T07:39:00Z", "start_time": "2023-12-04T16:30:00Z", "end_time": "2023-12-04T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "name": { "fi": "Drop in Yoga", "sv": "Drop in Yoga" }, "description": { "fi": "<p>Joogaa maanantai-iltaisin syksyllä 18.12. asti ja keväällä taas 8.1. - 17.6.</p><p>Piipahda haluamaasi aikaan ja niin pitkäksi aikaa kuin haluat.</p><p>Jooga voi:</p><p>Parantaa mielen keskittymiskykyä</p><p>Lisätä joustavuutta ja notkeutta</p><p>Poistaa fyysistä ja henkistä jännitystä</p><p>Elvyttää energia-tasoa</p><p>Parantaa terveyttä</p><p>Jooga-tunti sisältää:</p><p>Lämmittely-harjoituksia</p><p>Joogan perus-asentoja</p><p>Johdatuksen meditaatioon</p><p>Ota mukaasi oma jooga-mattosi.</p><p>Tule pukeutuneena mukaviin vaatteisiin.</p><p>Kokenut ohjaaja Lynda Bott (sairaanhoitaja ja jooga-hoitojen terapeutti)</p><p>Tunti on ilmainen. </p><p>Lisätietoja saat osoitteesta: lyndabott@hotmail.com….</p><p>Tunti on englanninkielinen suomenkielisellä käännöksellä.</p><p> <a href=\"http://www.anandamarga.fi\">www.anandamarga.fi</a> </p><br><br>", "sv": "<p>Yoga på måndagskvällar på hösten fram till 18.12. och igen på våren från 8.1. till 17.6.</p><p>Kom när du vill och så länge du vill.</p><p>Yoga kan:</p><p>Förbättra det mentala fokuset</p><p>Öka flexibilitet och smidighet</p><p>lindra fysiska och mentala spänningar</p><p>Återuppliva energinivåerna</p><p>Förbättra hälsan</p><p>En yogaklass innehåller:</p><p>Uppvärmningsövningar</p><p>Grundläggande yogaställningar</p><p>Introduktion till meditation</p><p>Ta med din egen yogamatta.</p><p>Kom klädd i bekväma kläder.</p><br><br>" }, "provider": null, "location_extra_info": { "fi": "Blue Room", "sv": "Blue Room" }, "info_url": null, "short_description": { "fi": "Ananda Marga community invites everyone to participate in free yoga practice in English and Finnish. Welcome!", "sv": "Yoga på måndagskvällar på hösten fram till 18.12. och igen på våren från 8.1. till 17.6. Kom när du vill och så länge du vill. Klassen är på engelska med en finsk översättning." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271963/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19291, "next": "