Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
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
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 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 coordinate system is the trusty old EPSG:4326 known from all online maps.
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
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.
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
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
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
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
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 event/?local_ongoing_AND=lapset,musiiki
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. The search is non-intelligently fuzzy, it allows two edits per search term which would cover some typos and allow for some grammatic changes: lapsi would match lapset but not lasten.
Example:
event/?local_ongoing_AND=lapsa,musiikki
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, two variations: ?internet_ongoing_AND
and ?internet_ongoing_OR
Note, that local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsa,musiiki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: ?all_ongoing_AND
and ?all_ongoing_OR
Example:
event/?all_ongoing_AND=lapsa,musiiki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
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=helmet
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
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
and duration
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
GET /linkedevents/v1/event/?event_status=EventCancelled
http://api.hel.fi/linkedevents/v1/event/?event_status=EventCancelled&page=2", "previous": null }, "data": [ { "id": "helsinki:agehwwn4fu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:56070/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p360/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2023-06-02T09:04:18.494811Z", "last_modified_time": "2023-06-02T09:11:12.205811Z", "date_published": null, "start_time": "2025-01-01T09:11:00Z", "end_time": "2025-01-01T09:11:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'2025':2A,4B 'test':1A,3B,5C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>testi </p>" }, "name": { "fi": "testi 2025" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "testi 2025" }, "provider": { "fi": "testi 2025" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agehwwn4fu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agdtnmrvmu", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:132/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p17018/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p26619/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdtnmr4he/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "helsinki:u42030010201002", "sub_events": [], "images": [ { "id": 73611, "license": "cc_by", "created_time": "2021-09-15T07:57:30.037463Z", "last_modified_time": "2021-09-15T08:00:53.071271Z", "name": "temppuilua", "url": "http://api.hel.fi/linkedevents/media/images/A0374410-A44D-41F9-AFDB-1CB12EE45F95.JPG", "cropping": "150,0,1050,900", "photographer_name": "", "alt_text": "temppuilua", "data_source": "helsinki", "publisher": "helsinki:u42030010201002", "@id": "http://api.hel.fi/linkedevents/v1/image/73611/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" } ], "created_time": "2023-03-31T08:04:21.521676Z", "last_modified_time": "2023-05-17T08:02:39.415780Z", "date_published": null, "start_time": "2023-05-23T07:00:00Z", "end_time": "2023-05-23T08:30:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'koko':2B,11C 'liikunnallin':7B,16C 'ohjatu':6B,15C 'omatoimin':4B,13C 'perh':3B,12C 'pihatuokio':8B,17C 'teema':10B,19C 'vaihtuv':9B,18C 'vipinävarp':1A", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Koko perheen omatoiminen tai ohjattu liikunnallinen pihatuokio vaihtuvalla teemalla.</p>" }, "name": { "fi": "Vipinävarpaat" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Koko perheen omatoiminen tai ohjattu liikunnallinen pihatuokio vaihtuvalla teemalla." }, "provider": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdtnmrvmu/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agdx6juozi", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:30/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p8105/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdx6juski/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "helsinki:u42030010201031", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-14T09:44:06.108619Z", "last_modified_time": "2023-05-16T08:54:02.155759Z", "date_published": null, "start_time": "2023-05-23T07:00:00Z", "end_time": "2023-05-23T07:30:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'kerholaist':6B,14C 'laule':16C 'leikkitoimin':13C 'muksu':1A 'musatuokio':2A 'musiikkituokio':3B,7C 'piha':9C 'puisto':4B,8C 'sisä':11C 'soite':18C 'yhd':5B,12C,19C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Musiikkituokio puistossa pihalla tai sisällä yhdessä leikkitoiminnan kerholaisten kanssa. Lauletaan ja soitetaan yhdessä.</p>" }, "name": { "fi": "Muksujen musatuokio" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Musiikkituokio puistossa yhdessä kerholaisten kanssa" }, "provider": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdx6juozi/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agd4q43cfe", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:26144/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "", "sv": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u4203004030", "sub_events": [], "images": [ { "id": 92049, "license": "cc_by", "created_time": "2023-04-28T13:08:03.462909Z", "last_modified_time": "2023-04-28T13:10:58.195808Z", "name": "342986066_1167484383924826_1099025661853611839_n.jpg", "url": "http://api.hel.fi/linkedevents/media/images/342986066_1167484383924826_1099025661853611839_n.jpg", "cropping": "238,0,1198,959", "photographer_name": "Annamari Rissanen", "alt_text": "Victoria Lindqvist och Linda Sundberg", "data_source": "helsinki", "publisher": "ahjo:u4203004030", "@id": "http://api.hel.fi/linkedevents/v1/image/92049/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/sv/" } ], "audience": [], "created_time": "2023-04-28T15:20:17.730129Z", "last_modified_time": "2023-05-10T09:12:33.124924Z", "date_published": null, "start_time": "2023-05-11T11:00:00Z", "end_time": "2023-05-11T12:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'2015':64C 'allsångskväl':69C 'at':66C 'av':98C 'bjuder':120C 'bottnar':18B,41C 'den':21B,44C 'det':55C,57C,74C 'dräkt':5A 'duon':12B,35C,76C 'efter':73C 'er':86C 'erotisk':15B,38C 'et':87C 'evenemang':113C 'fikabröd':127C 'finland':25B,48C 'folk':3A 'folksångstradition':23B,46C 'folkvisor':16B,39C 'framförd':101C 'från':24B,47C 'glimt':103C 'god':92C 'got':88C 'gratis':115C 'grup':61C 'har':75C 'humor':112C 'humör':89C 'härlig':59C 'hål':83C 'i':20B,43C,104C,117C 'informationsbord':123C 'inled':62C 'jäm':78C 'kaf':125C 'karriär':63C 'lind':9B,32C 'lindqvist':7B,30C 'låt':95C 'med':65C,77C,102C,126C 'mellanrum':79C 'mer':85C 'njuta':97C 'nordisk':22B,45C 'norg':28B,51C 'och':8B,27B,31C,50C,52C,90C,94C,106C,111C,116C,124C 'olik':82C 'ordning':119C 'os':96C 'portio':109C 'presenterar':2A 'professionalism':110C 'på':70C,81C,122C 'sammanst':67C 'sedvanlig':118C 'seniornätverk':1A 'sig':19B,42C 'sjunger':14B,37C 'skönsång':100C 'snuskig':99C 'snuskigt':53C 'som':13B,17B,36C,40C 'stor':108C 'står':58C 'sundberg':10B,33C 'svensk':71C 'sverig':26B,49C 'så':56C 'ta':84C 'teater':72C 'til':60C 'uppträt':80C 'uta':4A 'vi':121C 'victor':6B,29C 'vän':93C 'är':11B,34C,54C,114C 'öga':105C", "search_vector_en": "", "search_vector_sv": "'2015':64C 'allsångskväll':69C 'bjud':120C 'bottn':18B,41C 'dräkt':5A 'duon':12B,35C,76C 'erotisk':15B,38C 'evenemanget':113C 'fikabröd':127C 'finland':25B,48C 'folk':3A 'folksångstradition':23B,46C 'folkvis':16B,39C 'framförd':101C 'glimt':103C 'god':92C 'gott':88C 'gratis':115C 'grupp':61C 'hum':112C 'humör':89C 'här':59C 'håll':83C 'informationsbord':123C 'inled':62C 'jämn':78C 'kaff':125C 'karriär':63C 'lind':9B,32C 'lindqvist':7B,30C 'låt':95C 'mellanrum':79C 'mer':85C 'njut':97C 'nordisk':22B,45C 'norg':28B,51C 'olik':82C 'ordning':119C 'portion':109C 'presenter':2A 'professionalism':110C 'sammanställ':67C 'sedvan':118C 'seniornätverket':1A 'sjung':14B,37C 'skönsång':100C 'snusk':53C,99C 'stor':108C 'står':58C 'sundberg':10B,33C 'svensk':71C 'sver':26B,49C 'ta':84C 'teat':72C 'uppträt':80C 'victori':6B,29C 'vän':93C 'ögat':105C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Victoria Lindqvist och Linda Sundberg är duon som sjunger erotiska folkvisor som bottnar sig i den nordiska folksångstraditionen från Finland, Sverige och Norge. Och snuskigt är det, så det står härliga till.</p><p>Gruppen inledde karriären 2015 med att sammanställa en allsångskväll på Svenska Teatern. Efter det har duon med jämna mellanrum uppträtt på olika håll.</p><p>Ta mer er ett gott humör och en god vän och låt oss njuta av snuskig skönsång framförd med glimten i ögat och en stor portion professionalism och humor.</p><p>Evenemanget är gratis och i sedvanlig ordning bjuder vi på informationsbord och kaffe med fikabröd.</p>", "sv": "<p>Victoria Lindqvist och Linda Sundberg är duon som sjunger erotiska folkvisor som bottnar sig i den nordiska folksångstraditionen från Finland, Sverige och Norge. Och snuskigt är det, så det står härliga till.</p><p>Gruppen inledde karriären 2015 med att sammanställa en allsångskväll på Svenska Teatern. Efter det har duon med jämna mellanrum uppträtt på olika håll.</p><p>Ta mer er ett gott humör och en god vän och låt oss njuta av snuskig skönsång framförd med glimten i ögat och en stor portion professionalism och humor.</p><p>Evenemanget är gratis och i sedvanlig ordning bjuder vi på informationsbord och kaffe med fikabröd.</p>" }, "name": { "fi": "Seniornätverket presenterar: Folk Utan Dräkt", "sv": "Seniornätverket presenterar: Folk Utan Dräkt" }, "info_url": { "fi": "https://ilmonet.fi/course/A230425", "sv": "https://ilmonet.fi/course/A230425" }, "location_extra_info": { "fi": "", "sv": "" }, "short_description": { "fi": "Victoria Lindqvist och Linda Sundberg är duon som sjunger erotiska folkvisor som bottnar sig i den nordiska folksångstraditionen från Finland, Sverige och Norge", "sv": "Victoria Lindqvist och Linda Sundberg är duon som sjunger erotiska folkvisor som bottnar sig i den nordiska folksångstraditionen från Finland, Sverige och Norge" }, "provider": { "fi": "Helsingfors arbis", "sv": "Helsingfors arbis" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agd4q43cfe/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agc2wjenaq", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p178/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agc2wjeteq/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 78793, "license": "cc_by", "created_time": "2022-03-28T10:30:28.616827Z", "last_modified_time": "2022-11-08T10:18:42.079027Z", "name": "tyollisyyspalvelut_logo.png", "url": "http://api.hel.fi/linkedevents/media/images/tyollisyyspal_logo3_7WzmqPI.png", "cropping": "240,0,586,345", "photographer_name": "", "alt_text": "Helsingin työllisyyspalvelut logo", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/78793/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/en/" } ], "audience": [], "created_time": "2023-01-13T12:39:37.489371Z", "last_modified_time": "2023-05-03T11:58:22.005268Z", "date_published": null, "start_time": "2023-05-05T07:00:00Z", "end_time": "2023-05-05T12:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'10':19C '15':20C 'aikataulu':78C 'ajanvarau':87C 'an':33C 'ant':24C 'asio':13B,32C 'chat':76C 'digituk':34C 'eri':71C 'etädigitukipyynö':41C 'helsing':7B,26C 'helsink':2A,22C,51C,82C 'helsinki-info':1A,21C,81C 'house':50C 'ih':48C 'info':3A,23C,83C 'international':49C 'itäkeskuks':5A,15C,67C 'kannelmäe':61C 'kaupung':8B,27C,35C 'ker':55C 'kiel':72C 'kirjasto':58C 'klo':18C 'kontul':60C 'käytö':38C 'liittyv':12B,31C 'lisä':53C 'maahanmuuto':11B,30C 'malm':63C 'neuvo':4A,6B,25C 'neuvontapäiv':14C 'ood':46C 'opa':54C 'paikallist':57C 'palvel':68C 'palvelu':9B,28C,37C,52C 'palvelupist':43C,73C 'palvelutor':66C 'perjantais':17C 'puhelim':74C 'puole':42C 'pysyv':45C 'sijaitsev':44C 'sivu':84C 'sähköist':36C 'tarkemp':77C 'tarvits':86C 'työllisyyd':65C 'use':70C 'viiko':56C 'väl':40C 'yhteyd':59C 'yhteystiedo':80C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Neuvontapäivät<strong> </strong>Itäkeskuksessa ovat perjantaisin klo 10–15.</p><ul><li>Helsinki-info antaa neuvoa Helsingin kaupungin palveluista ja maahanmuuttoon liittyvissä asioissa.</li><li>Annamme digitukea kaupungin sähköisten palveluiden käytössä tai välitämme etädigitukipyynnön puolestasi.</li></ul><p><br>Palvelupisteemme sijaitsevat pysyvästi Oodissa ja IHH (International House Helsinki) -palvelussa.</p><p>Lisäksi opastamme kerran viikossa paikallisten kirjastojen yhteydessä Kontulassa, Kannelmäessä ja Malmilla sekä työllisyyden palvelutorilla Itäkeskuksessa.</p><p>Palvelemme sinua useilla eri kielillä palvelupisteillämme, puhelimessa ja chatissä.</p><p><br><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/ota-yhteytta/helsinki-info\">Tarkempi aikataulu ja yhteystiedot Helsinki-infon sivulla. </a></p><p>Et tarvitse ajanvarausta. </p>" }, "name": { "fi": "Helsinki-info neuvoo Itäkeskuksessa" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Neuvomme Helsingin kaupungin palveluista ja maahanmuuttoon liittyvissä asioissa." }, "provider": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agc2wjenaq/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agcwelfwdy", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:47695/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p27829/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3093/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p3320/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p916/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcwelf6ee/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u320200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/" } ], "created_time": "2022-12-30T08:36:15.530716Z", "last_modified_time": "2023-04-27T07:30:46.486676Z", "date_published": null, "start_time": "2023-05-03T09:15:00Z", "end_time": "2023-05-03T09:45:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'istue':6C 'käsipaino':9C 'käyt':8C 'liik':4C 'mahdollisuus':7C 'tehd':5C 'tuolijump':1A,2B,3C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppa, liikkeet tehdään istuen, mahdollisuus käyttää käsipainoja</p>" }, "name": { "fi": "Tuolijumppa" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "Juhlasali" }, "short_description": { "fi": "Tuolijumppa" }, "provider": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agcwelfwdy/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agdtehg5ci", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:132/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p316/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdadr4uhu/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "helsinki:u42030010201002", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" } ], "created_time": "2023-03-30T10:42:45.158946Z", "last_modified_time": "2023-04-24T06:04:33.276991Z", "date_published": null, "start_time": "2023-04-28T07:00:00Z", "end_time": "2023-04-28T08:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'kaikenikäis':3B,5C 'laulam':11C 'leikkim':13C 'leikkipuisto':6C 'lämpim':8C 'musatuokio':1A 'musiikkituokio':2B,4C 'sisätilo':7C 'tervetulo':9C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Musiikkituokio kaikenikäisille leikkipuiston sisätiloissa. Lämpimästi tervetuloa mukaan laulamaan ja leikkimään!</p>" }, "name": { "fi": "Musatuokio" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Musiikkituokio kaikenikäisille" }, "provider": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agdtehg5ci/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agc4ktpkiq", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helsinki:agcl3tc74q/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10687/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p178/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p84/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p9860/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agc4ktpshy/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 69521, "license": "cc_by", "created_time": "2021-02-23T11:34:30.667991Z", "last_modified_time": "2021-02-23T11:34:30.668031Z", "name": "tyollisyyspal_logo3.png", "url": "http://api.hel.fi/linkedevents/media/images/tyollisyyspal_logo3_V9lXwTI.png", "cropping": "240,0,586,345", "photographer_name": "", "alt_text": "Helsingin työllisyyspalvelut logo", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/69521/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/en/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11617/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" } ], "created_time": "2023-01-18T14:34:55.958626Z", "last_modified_time": "2023-04-19T10:46:12.517751Z", "date_published": null, "start_time": "2023-04-27T09:00:00Z", "end_time": "2023-04-27T13:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-16.00':79C,88C '-29':19C '12.00':78C,87C '15':18C '3':71C '4':72C '48':91C 'ajanvarau':27C,106C 'apu':34C 'asia':29C,31C 'asiakkaankatu':70C 'asiantuntij':98C 'asumis':42C 'avoin':83C 'fredrikinkatu':90C 'goes':2A,5B 'helsing':66C 'helsink':15C,48C 'hyvinvoint':39C 'ilm':26C,105C 'instagram':95C,102C 'itäkeskuks':8B,59C 'itäkeskus':3A,6B,64C 'juttelem':10B 'kaik':17C 'kamp':52C,81C 'kerros':73C 'keskustelem':28C 'klo':77C,86C 'koulutuks':38C 'kysymyks':44C 'liittyv':43C 'löydä':61C 'maanant':84C 'mite':60C 'muas':36C 'muun':35C 'myös':58C 'neuvontapist':22C 'nuor':51C 'näet':96C 'ohjaamo':1A,4B,13C,14C,32C,47C,63C,80C,92C 'ohjaamo.hel.fi':101C 'ohjaamohelsink':103C 'oli':12C 'osoit':69C,89C 'paika':62C,75C,100C 'palvelu':50C 'perjant':85C 'saak':46C 'saat':33C 'sijaits':65C 'sivu':93C 'talout':40C 'tarkoitetu':21C 'tervetulo':104C 'tilo':68C 'torstai':57C 'torstais':7B,76C 'tul':25C 'tule':9B 'työllisyyspalvelu':67C 'työnhaku':37C 'vierail':55C 'voit':24C 'vuotia':20C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Mikä olikaan Ohjaamo?</strong></p><p> </p><p>Ohjaamo Helsinki on kaikille 15-29-vuotiaille tarkoitettu neuvontapiste, mihin voit tulla ilman ajanvarausta keskustelemaan asiasta kuin asiasta.</p><p>Ohjaamosta saat apua muun muassa työnhakuun, koulutukseen, hyvinvointiin, talouteen ja asumiseen liittyvissä kysymyksissä.</p><p>Tähän saakka Ohjaamo Helsinki on palvellut nuoria Kampissa, mutta nyt vierailemme joka torstai myös Itäkeskuksessa.</p><p> </p><p><strong>Miten löydän paikalle?</strong></p><p> </p><ul><li>Ohjaamo Itäkeskus sijaitsee Helsingin Työllisyyspalvelujen tiloissa osoitteessa <strong>Asiakkaankatu 3 (4. kerros).</strong> Olemme paikalla torstaisin klo 12.00-16.00. </li><li>Ohjaamo Kamppi on avoinna maanantaista perjantaihin klo 12.00-16.00 osoitteessa <strong>Fredrikinkatu 48</strong>.</li></ul><p> </p><p>Ohjaamon sivuilta ja Instagramista näet, ketkä asiantuntijoistamme on paikalla;</p><p><a href=\"https://ohjaamo.hel.fi/\">https://ohjaamo.hel.fi/</a></p><p>Instagram: @ohjaamohelsinki</p><p> </p><p><strong>Tervetuloa, ilman ajanvarausta!</strong></p>" }, "name": { "fi": "Ohjaamo Goes Itäkeskus!" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Ohjaamo Goes Itäkeskus! torstaisin Itäkeskuksessa. Tule juttelemaan!" }, "provider": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agc4ktpkiq/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agc2wjempa", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:67854/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p10727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p15875/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p178/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2108/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2149/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p23/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6357/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agc2wjeteq/" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": { "fi": "" }, "price": null, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u02120030", "sub_events": [], "images": [ { "id": 78793, "license": "cc_by", "created_time": "2022-03-28T10:30:28.616827Z", "last_modified_time": "2022-11-08T10:18:42.079027Z", "name": "tyollisyyspalvelut_logo.png", "url": "http://api.hel.fi/linkedevents/media/images/tyollisyyspal_logo3_7WzmqPI.png", "cropping": "240,0,586,345", "photographer_name": "", "alt_text": "Helsingin työllisyyspalvelut logo", "data_source": "helsinki", "publisher": "ahjo:u02120030", "@id": "http://api.hel.fi/linkedevents/v1/image/78793/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/en/" } ], "audience": [], "created_time": "2023-01-13T12:39:37.349248Z", "last_modified_time": "2023-04-19T10:01:38.167634Z", "date_published": null, "start_time": "2023-04-21T07:00:00Z", "end_time": "2023-04-21T12:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'10':19C '15':20C 'aikataulu':78C 'ajanvarau':87C 'an':33C 'ant':24C 'asio':13B,32C 'chat':76C 'digituk':34C 'eri':71C 'etädigitukipyynö':41C 'helsing':7B,26C 'helsink':2A,22C,51C,82C 'helsinki-info':1A,21C,81C 'house':50C 'ih':48C 'info':3A,23C,83C 'international':49C 'itäkeskuks':5A,15C,67C 'kannelmäe':61C 'kaupung':8B,27C,35C 'ker':55C 'kiel':72C 'kirjasto':58C 'klo':18C 'kontul':60C 'käytö':38C 'liittyv':12B,31C 'lisä':53C 'maahanmuuto':11B,30C 'malm':63C 'neuvo':4A,6B,25C 'neuvontapäiv':14C 'ood':46C 'opa':54C 'paikallist':57C 'palvel':68C 'palvelu':9B,28C,37C,52C 'palvelupist':43C,73C 'palvelutor':66C 'perjantais':17C 'puhelim':74C 'puole':42C 'pysyv':45C 'sijaitsev':44C 'sivu':84C 'sähköist':36C 'tarkemp':77C 'tarvits':86C 'työllisyyd':65C 'use':70C 'viiko':56C 'väl':40C 'yhteyd':59C 'yhteystiedo':80C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Neuvontapäivät<strong> </strong>Itäkeskuksessa ovat perjantaisin klo 10–15.</p><ul><li>Helsinki-info antaa neuvoa Helsingin kaupungin palveluista ja maahanmuuttoon liittyvissä asioissa.</li><li>Annamme digitukea kaupungin sähköisten palveluiden käytössä tai välitämme etädigitukipyynnön puolestasi.</li></ul><p><br>Palvelupisteemme sijaitsevat pysyvästi Oodissa ja IHH (International House Helsinki) -palvelussa.</p><p>Lisäksi opastamme kerran viikossa paikallisten kirjastojen yhteydessä Kontulassa, Kannelmäessä ja Malmilla sekä työllisyyden palvelutorilla Itäkeskuksessa.</p><p>Palvelemme sinua useilla eri kielillä palvelupisteillämme, puhelimessa ja chatissä.</p><p><br><a href=\"https://www.hel.fi/fi/paatoksenteko-ja-hallinto/ota-yhteytta/helsinki-info\">Tarkempi aikataulu ja yhteystiedot Helsinki-infon sivulla. </a></p><p>Et tarvitse ajanvarausta. </p>" }, "name": { "fi": "Helsinki-info neuvoo Itäkeskuksessa" }, "info_url": { "fi": "" }, "location_extra_info": { "fi": "" }, "short_description": { "fi": "Neuvomme Helsingin kaupungin palveluista ja maahanmuuttoon liittyvissä asioissa." }, "provider": { "fi": "" }, "@id": "http://api.hel.fi/linkedevents/v1/event/helsinki:agc2wjempa/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:252311", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10791/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 88340, "license": "cc_by", "created_time": "2023-01-10T16:23:35.193547Z", "last_modified_time": "2023-01-10T16:23:35.193573Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1BE225BE-FA3F-4724-B1A4-DA0385D27436}/99362", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/88340/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-01-10T16:25:45.957274Z", "last_modified_time": "2023-04-19T03:21:45.745207Z", "date_published": "2023-01-10T15:51:00Z", "start_time": "2023-05-30T07:00:00Z", "end_time": "2023-05-30T08:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-30.5':12C '10':16C '17.01':11C '3':81C '30':56C,65C '7.2':20C 'aika':73C 'aikuis':41C,84C 'al':80C 'ennakkoilmoittautum':94C 'erilais':48C 'hassuttelu':31C 'hausko':7B 'itäkeskuks':97C 'jolo':21C 'juttelem':68C 'jälk':60C 'järjest':10C,24C 'jäädä':63C 'kaike':74C 'kanerv':18C 'kehity':36C 'kielel':35C 'kirjasto':98C 'klo':15C 'kokoushuon':17C 'käyte':47C 'laps':34C,39C 'leik':45C 'leikkej':28C 'leikkim':67C 'liike':52C 'loru':26C,43C 'loruleik':8B 'lorut':54C 'loruttelem':96C 'loruttelu':32C 'lorutuokio':1A,9C,22C 'materiaal':49C 'minuut':57C,66C 'muide':76C 'muute':70C 'myös':89C 'nauttim':6B 'oma':83C 'osallistu':77C,90C 'poikkeuks':19C 'pääsy':92C 'rauha':75C 'runo':27C 'rytmej':50C 'saa':62C 'saava':88C 'seura':85C 'sisaruks':87C 'suhd':42C 'suosit':79C 'taapero':4A 'tervetulo':95C 'tiedo':25C 'tiistai':14C 'tila':61C 'tuke':33C,46C 'tule':5B 'tuokio':53C 'vahvist':38C 'vain':71C 'vanhem':86C 'vapa':91C 'vauvo':2A 'vielä':64C 'viettäm':72C 'vuotia':82C 'yhd':30C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lorutuokioita järjestetään 17.01.-30.5. joka tiistai klo 10 kokoushuone Kanervassa.</p><p>Poikkeuksena 7.2., jolloin lorutuokiota ei järjestetä.</p><p>Tiedossa loruja, runoja, leikkejä ja yhdessä hassuttelua! Loruttelu tukee lapsen kielellistä kehitystä ja vahvistaa lapsen ja aikuisen suhdetta. Lorujen ja leikkien tukena käytetään erilaisia materiaaleja, rytmejä ja liikettä.</p><p>Tuokiossa lorutellaan noin 30 minuuttia ja sen jälkeen tilaan saa jäädä vielä 30 minuutiksi leikkimään, juttelemaan ja muuten vain viettämään aikaa kaikessa rauhassa muiden osallistujien kanssa.</p><p>Suositellaan alle 3-vuotiaille oman aikuisen seurassa. Vanhemmat sisarukset saavat myös osallistua!</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa loruttelemaan Itäkeskuksen kirjastoon!</p>" }, "name": { "fi": "Lorutuokiot vauvoille ja taaperoille" }, "info_url": null, "location_extra_info": null, "short_description": { "fi": "Tule nauttimaan hauskoista loruleikeistä!" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:252311/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:256904", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8215/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10674/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10675/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11733/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p556/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 57798, "license": "cc_by", "created_time": "2019-08-19T14:22:17.440979Z", "last_modified_time": "2019-08-19T14:22:17.441002Z", "name": "", "url": "https://www.helmet.fi/download/noname/{102C0BA4-1C09-4239-9B6C-31CD64372EDF}/75869", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/57798/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" } ], "created_time": "2023-03-10T02:22:28.407048Z", "last_modified_time": "2023-04-19T03:21:43.180213Z", "date_published": "2023-01-09T11:44:00Z", "start_time": "2023-05-25T14:00:00Z", "end_time": "2023-05-25T15:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-18':10B,28C '/kallionkielikahvila':87C,170C '00530':38C '11':37C '17':9B,27C '5':108C 'a':95C,113C,121C,139C,146C 'aihe':67C 'aika':56C 'aina':70C 'and':111C,119C,142C 'are':104C 'asio':76C 'at':107C 'bit':147C 'bit.ly':86C,169C 'bit.ly/kallionkielikahvila':85C,168C 'by':159C 'café':89C 'chat':120C 'cof':116C 'come':110C 'contact':154C 'cup':114C 'discusio':97C 'drop':158C 'en':53C 'eve':144C 'every':105C 'finnish':96C,124C,133C 'for':151C 'goal':135C 'group':98C 'halua':78C 'have':94C,112C,138C 'helsink':39C 'hiuka':52C 'if':128C 'in':90C,99C,123C 'informatio':153C 'is':136C 'it':125C 'jo':51C 'join':164C 'jote':59C 'just':157C 'jute':72C 'jutel':58C 'juuri':73C 'jännit':60C 'kalio':1A,11B,16C,18C,91C,100C 'kallion_kirjasto@hel.fi':82C,155C 'kaver':66C 'keskustelupiir':5B,23C 'kiele':4B,22C,41C 'kielikahvil':2A,17C,19C 'kirjasto':12B,29C,32C 'klo':8B,26C 'know':130C 'languag':88C 'lear':145C 'library':92C,101C 'liity':83C 'linj':36C 'list':167C 'lisä':14B 'lisätieto':79C 'littl':122C,132C 'lue':13B 'mailing':166C 'maybe':143C 'meeting':163C 'meetings':103C 'more':152C 'next':162C 'nice':140C 'of':115C 'ok':127C 'only':131C 'or':117C,156C 'osa':50C 'osoit':33C 'ota':80C 'otso':31C 'our':134C,161C,165C 'pm':109C 'postituslist':84C 'rennost':55C 'rohkeast':63C 'ryhmätil':30C 's':126C 'saat':71C 'sujuv':46C 'suome':3B,21C,40C 'taito':42C 'tarvits':44C,62C 'tea':118C 'tervetulo':15C 'the':102C,149C 'thursday':106C 'time':141C 'to':137C,160C 'toivo':48C 'torstai':7B,25C 'tärk':75C 'vaihtelev':68C 'vietä':54C 'viides':35C 'way':150C 'we':93C 'yhd':57C 'yhteyt':81C 'you':129C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<h2> Tervetuloa Kallion kielikahvilaan! <br> </h2> <p> <strong>Kallion kielikahvila</strong> on suomen kielen keskustelupiiri joka torstai klo 17-18 kirjaston ryhmätila Otsossa. Kirjaston osoite on Viides linja 11, 00530 Helsinki. </p> <p> Suomen kielen taitosi ei tarvitse olla sujuvaa, mutta toivomme, että osaat jo hiukan ennestään. Vietämme rennosti aikaa yhdessä jutellen, joten jännittää ei tarvitse.<br><br> Rohkeasti mukaan! Tuo kaverisikin!<br>Aiheet vaihtelevat - ja aina saat jutella juuri sinulle tärkeistä asioista! </p> <p> Jos haluat lisätietoja, ota yhteyttä: <a href=\"mailto:kallion_kirjasto@hel.fi\">kallion_kirjasto@hel.fi</a> </p> <p>Liity postituslistallemme: <a href=\"http://bit.ly/kallionkielikahvila?fbclid=IwAR3rhUr-mX2ZXK21YWIDxjbpq7jlh7__3HN-IzSVHi346k5qi5C9coXrJYU\">http://bit.ly/kallionkielikahvila</a></p> </p> <h2> Language Café in Kallio Library </h2> <p> We have a Finnish discussion group in Kallio Library. The meetings are every Thursday at 5 pm.<br> Come and have a cup of coffee or tea and chat a little in Finnish.<br><br> It’s OK if you know only little Finnish. Our goal is to have a nice time and maybe even learn a bit on the way. </p> <p> For more information contact: <a href=\"mailto:kallion_kirjasto@hel.fi\">kallion_kirjasto@hel.fi</a> <br> Or just drop by to our next meeting. </p> <p> Join our mailing list: <a href=\"http://bit.ly/kallionkielikahvila?fbclid=IwAR3rhUr-mX2ZXK21YWIDxjbpq7jlh7__3HN-IzSVHi346k5qi5C9coXrJYU\">http://bit.ly/kallionkielikahvila</a></p>" }, "name": { "fi": "Kallion kielikahvila" }, "info_url": null, "location_extra_info": { "fi": "Ryhmätila Otso 1. krs" }, "short_description": { "fi": "Suomen kielen keskustelupiiri joka torstai klo 17-18 Kallion kirjastossa. Lue lisää..." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:256904/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:255003", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11383/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11781/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 89056, "license": "cc_by", "created_time": "2023-01-27T15:25:22.191698Z", "last_modified_time": "2023-01-27T15:25:22.191726Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DB3BDFD0-A96D-4BEF-8D4C-B318BACD53A6}/99836", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/89056/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/ru/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/" } ], "created_time": "2023-02-04T01:25:51.990745Z", "last_modified_time": "2023-04-19T03:21:42.994733Z", "date_published": "2023-02-03T20:09:00Z", "start_time": "2023-05-25T13:00:00Z", "end_time": "2023-05-25T14:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-12':4A '-17.00':33C '10':51C '11':3A,11B '11.5':43C '12':13B '13.4':41C '16.00':32C '16.2':37C '16.3':39C '2.2':36C '2.3':38C '25.5':44C '27.4':42C '30.3':40C 'avu':28C 'ilmoittautum':45C 'kerho':21C,46C 'kirjasto':20C 'klo':31C 'las':52C 'lastenruno':23C 'luem':22C 'lämpim':56C 'mahtu':50C 'maksuton':55C 'nuore':15C 'osallistumin':53C 'paika':48C 'pide':30C 'päiv':35C 'selo':19C 'seuraav':34C 'tervetulo':17C,57C 'tiedekerho':2A,18C,29C 'tiedemaailm':26C 'tiedetempu':27C 'tun':49C 'tutkij':16C 'tutustu':25C 'varmist':47C 'venäjänkielin':1A 'vuotia':5A 'детей':9B 'для':8B 'до':12B 'кружок':7B 'лет':14B 'научный':6B 'от':10B", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Nuoret tutkijat!</p><p>Tervetuloa tiedekerhoon Sellon kirjastoon! Kerhossa luemme lastenrunoja ja tutustumme tiedemaailmaan tiedetemppujen avulla. </p><p>Tiedekerho pidetään klo 16.00-17.00 seuraavina päivinä: 2.2, 16.2, 2.3, 16.3, 30.3, 13.4, 27.4, 11.5, 25.5.</p><p> <strong>Ilmoittautumalla kerhoon varmistat paikan. Tunnille mahtuu 10 lasta. Osallistuminen on maksutonta.</strong> </p><p>Lämpimästi tervetuloa!</p>", "ru": "<p>Юные исследователи!</p><p>Приглашаем вас на научный кружок в библиотеку <strong>Sello</strong>! Мы познакомим вас с детскими стихотворениями и увлекательными научными опытами. Приходите, будет интересно!</p><p>Научный кружок проводится с 16:00 до 17:00. Добро пожаловать на кружок 2.2, 16.2, 2.3, 16.3, 30.3, 13.4, 27.4, 11.5, 25.5!</p><p>Количество участников – 10 человек, просим детей зарегистрироваться.</p>" }, "name": { "fi": "Venäjänkielinen tiedekerho 11-12-vuotiaille", "ru": "Научный кружок для детей от 11 до 12 лет" }, "info_url": null, "location_extra_info": { "fi": "Eväspaikka, Lastenmaa", "ru": "Стол у входа в отдел детской литературы" }, "short_description": { "fi": "Научный кружок для детей от 11 до 12 лет", "ru": "Научный кружок для детей от 11 до 12 лет" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:255003/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:254967", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10594/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11383/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11756/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11781/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7643/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 89056, "license": "cc_by", "created_time": "2023-01-27T15:25:22.191698Z", "last_modified_time": "2023-01-27T15:25:22.191726Z", "name": "", "url": "https://www.helmet.fi/download/noname/{DB3BDFD0-A96D-4BEF-8D4C-B318BACD53A6}/99836", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/89056/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" }, { "@id": "http://api.hel.fi/linkedevents/v1/language/ru/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16485/" } ], "created_time": "2023-02-04T01:25:51.776917Z", "last_modified_time": "2023-04-19T03:21:42.723223Z", "date_published": "2023-02-03T19:52:00Z", "start_time": "2023-05-25T11:00:00Z", "end_time": "2023-05-25T12:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-10':4A,18C '-15':38C '10':13B,56C '11.5':48C '13.4':46C '14':37C '16.2':42C '16.3':44C '2.3':43C '25.5':49C '27.4':47C '3.2':41C '30.3':45C '7':3A,11B,17C 'avu':33C 'ilmoittautum':50C 'kerho':26C,51C 'kirjasto':25C 'klo':36C 'las':57C 'lastenruno':28C 'luem':27C 'lämpim':61C 'mahtu':55C 'maksuton':60C 'nuore':20C 'osallistumin':58C 'paika':53C 'pide':35C 'päiv':40C 'selo':24C 'seuraav':39C 'tervetulo':22C,62C 'tiedekerho':2A,16C,23C,34C 'tiedemaailm':31C 'tiedetempu':32C 'tun':54C 'tutkij':21C 'tutustu':30C 'varmist':52C 'venäjänkielin':1A,15C 'vuotia':5A,19C 'детей':9B 'для':8B 'до':12B 'кружок':7B 'лет':14B 'научный':6B 'от':10B", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Venäjänkielinen tiedekerho 7-10-vuotiaille</p><p>Nuoret tutkijat!</p><p>Tervetuloa tiedekerhoon Sellon kirjastoon! Kerhossa luemme lastenrunoja ja tutustumme tiedemaailmaan tiedetemppujen avulla. </p><p>Tiedekerho pidetään klo 14-15 seuraavina päivinä: 3.2, 16.2, 2.3, 16.3, 30.3, 13.4, 27.4, 11.5, 25.5.</p><p> <strong>Ilmoittautumalla kerhoon varmistat paikan. Tunnille mahtuu 10 lasta. Osallistuminen on maksutonta.</strong> </p><p>Lämpimästi tervetuloa!</p>", "ru": "<p>Научный кружок для детей от 7 до 10 лет</p><p>Юные исследователи!</p><p>Приглашаем вас на научный кружок в библиотеку <strong>Sello</strong>! Мы познакомим вас с детскими стихотворениями и увлекательными научными опытами. Приходите, будет интересно!</p><p>Научный кружок проводится с 14:00 до 15:00. Добро пожаловать на кружок 3.2, 16.2, 2.3, 16.3, 30.3, 13.4, 27.4, 11.5, 25.5!</p><p>Количество участников – 10 человек, просим детей зарегистрироваться.</p>" }, "name": { "fi": "Venäjänkielinen tiedekerho 7-10-vuotiaille", "ru": "Научный кружок для детей от 7 до 10 лет" }, "info_url": null, "location_extra_info": { "fi": "Eväspaikka, Lastenmaa", "ru": "Стол у входа в отдел детской литературы" }, "short_description": { "fi": "Научный кружок для детей от 7 до 10 лет", "ru": "Научный кружок для детей от 7 до 10 лет" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:254967/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:252294", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10791/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 88340, "license": "cc_by", "created_time": "2023-01-10T16:23:35.193547Z", "last_modified_time": "2023-01-10T16:23:35.193573Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1BE225BE-FA3F-4724-B1A4-DA0385D27436}/99362", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/88340/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-01-10T16:25:42.514585Z", "last_modified_time": "2023-04-19T03:21:39.872480Z", "date_published": "2023-01-10T15:51:00Z", "start_time": "2023-05-23T07:00:00Z", "end_time": "2023-05-23T08:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-30.5':12C '10':16C '17.01':11C '3':81C '30':56C,65C '7.2':20C 'aika':73C 'aikuis':41C,84C 'al':80C 'ennakkoilmoittautum':94C 'erilais':48C 'hassuttelu':31C 'hausko':7B 'itäkeskuks':97C 'jolo':21C 'juttelem':68C 'jälk':60C 'järjest':10C,24C 'jäädä':63C 'kaike':74C 'kanerv':18C 'kehity':36C 'kielel':35C 'kirjasto':98C 'klo':15C 'kokoushuon':17C 'käyte':47C 'laps':34C,39C 'leik':45C 'leikkej':28C 'leikkim':67C 'liike':52C 'loru':26C,43C 'loruleik':8B 'lorut':54C 'loruttelem':96C 'loruttelu':32C 'lorutuokio':1A,9C,22C 'materiaal':49C 'minuut':57C,66C 'muide':76C 'muute':70C 'myös':89C 'nauttim':6B 'oma':83C 'osallistu':77C,90C 'poikkeuks':19C 'pääsy':92C 'rauha':75C 'runo':27C 'rytmej':50C 'saa':62C 'saava':88C 'seura':85C 'sisaruks':87C 'suhd':42C 'suosit':79C 'taapero':4A 'tervetulo':95C 'tiedo':25C 'tiistai':14C 'tila':61C 'tuke':33C,46C 'tule':5B 'tuokio':53C 'vahvist':38C 'vain':71C 'vanhem':86C 'vapa':91C 'vauvo':2A 'vielä':64C 'viettäm':72C 'vuotia':82C 'yhd':30C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lorutuokioita järjestetään 17.01.-30.5. joka tiistai klo 10 kokoushuone Kanervassa.</p><p>Poikkeuksena 7.2., jolloin lorutuokiota ei järjestetä.</p><p>Tiedossa loruja, runoja, leikkejä ja yhdessä hassuttelua! Loruttelu tukee lapsen kielellistä kehitystä ja vahvistaa lapsen ja aikuisen suhdetta. Lorujen ja leikkien tukena käytetään erilaisia materiaaleja, rytmejä ja liikettä.</p><p>Tuokiossa lorutellaan noin 30 minuuttia ja sen jälkeen tilaan saa jäädä vielä 30 minuutiksi leikkimään, juttelemaan ja muuten vain viettämään aikaa kaikessa rauhassa muiden osallistujien kanssa.</p><p>Suositellaan alle 3-vuotiaille oman aikuisen seurassa. Vanhemmat sisarukset saavat myös osallistua!</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa loruttelemaan Itäkeskuksen kirjastoon!</p>" }, "name": { "fi": "Lorutuokiot vauvoille ja taaperoille" }, "info_url": null, "location_extra_info": null, "short_description": { "fi": "Tule nauttimaan hauskoista loruleikeistä!" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:252294/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:247967", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8149/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 68313, "license": "cc_by", "created_time": "2020-11-25T09:20:47.140924Z", "last_modified_time": "2020-11-25T09:20:47.140947Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B639063D-B1E6-4EE8-ACDF-889B8537FBB3}/85782", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/68313/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2022-12-12T14:21:32.616446Z", "last_modified_time": "2023-04-19T03:21:39.629287Z", "date_published": "2022-06-28T15:52:00Z", "start_time": "2023-05-22T14:00:00Z", "end_time": "2023-05-22T16:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-19.30':27C '09':32C '15':87C '17.00':26C '17.4':21C,112C '20.2':17C,104C '20.3':19C,108C '22.5':24C,115C '23.1':15C,100C '3.4':20C,110C '310':33C '6.2':16C,102C '6.3':18C,106C '8.00':43C '8.5':22C,114C '85025':34C '9.1':14C,98C 'aina':94C 'aja':28C,35C 'ajanvarauks':30C 'alkae':44C 'alkuneuvont':6B,50C 'antav':48C 'apu':62C 'asia':56C,66C 'asiak':83C 'asiakirj':77C 'asianajaj':47C,53C,68C 'asianajajapäivysty':117C 'asianajajapäivystyks':4B,45C 'asianajajapäivystys':1A,10C,96C 'asianajajayhdistys':131C 'asiantuntij':61C 'asiantuntija-apu':60C 'asio':9B,52C 'asiointiaik':89C 'edeltäv':39C 'eikä':78C 'hake':58C 'helsing':130C 'hoita':79C 'iso':123C 'itäkeskuks':121C 'jokais':82C 'järjest':129C 'kaik':7B 'kerto':54C 'keskustelu':92C 'kirjasto':3A,12C,122C,133C 'klo':25C,42C 'käydy':91C 'laajemp':80C 'laat':76C 'lisä':59C 'luottamuksellis':95C 'maanant':13C,97C 'maksuton':49C 'min':88C 'myyrmäkitalo':127C 'myös':120C 'n':86C 'neuvon':128C 'ohj':64C 'oikea':70C 'oikeudellis':8B,51C 'omen':124C 'on':55C 'palvelutor':125C 'perehtyn':67C 'perutu':99C,107C 'puh':31C 'puole':72C 'päivysty':38C 'päivystyks':73C,90C 'pääkaupunkiseudu':116C 'saa':5B 'tarj':119C 'tarp':57C 'tarvitae':65C 'toimeksianto':81C 'torst':41C 'täyn':101C,103C,105C,109C,111C,113C 'töölö':2A,11C,132C 'vain':29C 'vapaaehtois':46C 'vara':37C 'varatu':85C 'viiko':40C 'viranomais':71C 'voi':36C 'voida':75C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p> <strong>Asianajajapäivystys Töölön kirjastossa maanantaina 9.1., 23.1., 6.2., 20.2., 6.3., 20.3., 3.4., 17.4., 8.5. ja 22.5. klo 17.00-19.30. <br><br> Ajat vain ajanvarauksella puh. 09 310 85025. Ajan voi varata päivystystä edeltävän viikon torstaista klo 8.00 alkaen.</strong> <br> <br> Asianajajapäivystyksessä vapaaehtoiset asianajajat antavat maksutonta alkuneuvontaa oikeudellisissa asioissa. Asianajaja kertoo, onko asiassa tarpeen hakea lisää asiantuntija-apua ja ohjaa tarvittaessa asiaan perehtyneen asianajajan tai oikean viranomaisen puoleen. Päivystyksessä ei voida laatia asiakirjoja eikä hoitaa laajempia toimeksiantoja.<br> Jokaiselle asiakkaalle on varattu n. 15 min asiointiaikaa. Päivystyksessä käydyt keskustelut ovat aina luottamuksellisia.<br><br> Asianajajapäivystys maanantaina: <br> 9.1. <strong>PERUTTU!</strong><br> 23.1. TÄYNNÄ<br> 6.2. TÄYNNÄ<br> 20.2. TÄYNNÄ<br> 6.3. <strong>PERUTTU!</strong><br> 20.3. TÄYNNÄ<br> 3.4. TÄYNNÄ<br> 17.4. TÄYNNÄ<br> 8.5.<br> 22.5.<br><br><a href=\"https://asianajajaliitto.fi/tapahtumakalenteri/asianajajapaivystys/\">Pääkaupunkiseudulla asianajajapäivystystä</a> on tarjolla myös Itäkeskuksen kirjastossa, Iso Omenan palvelutorilla sekä Myyrmäkitalossa. </p><p>Neuvonnan järjestää <a href=\"http://hki.asianajajat.fi/\"><u>Helsingin asianajajayhdistys</u></a><br><br><a href=\"http://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Toolon_kirjasto\"><u>Töölön kirjasto</u></a></p>" }, "name": { "fi": "Asianajajapäivystys Töölön kirjastossa" }, "info_url": null, "location_extra_info": { "fi": "Kirjastosali, 2. krs" }, "short_description": { "fi": "Asianajajapäivystyksessä saa alkuneuvontaa kaikissa oikeudellisissa asioissa." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:247967/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:251034", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 37152, "license": "cc_by", "created_time": "2017-06-09T14:13:18.165030Z", "last_modified_time": "2018-11-13T15:26:15.372289Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F45712A8-9DB2-4AF2-9DBE-0AEE672000E7}/41220", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/37152/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2023-01-02T11:23:20.484094Z", "last_modified_time": "2023-04-19T03:21:39.002339Z", "date_published": "2022-05-02T09:49:00Z", "start_time": "2023-05-22T07:35:00Z", "end_time": "2023-05-22T08:05:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'10.35':10C 'jaminurk':11C 'jumppaam':14C 'kehonhuolto':1A,4B 'klo':9C 'maanantais':7B,8C 'pääsy':16C 'tasapainojump':3A,6B 'tervetulo':17C 'tule':12C 'vapa':15C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<h3>Maanantaisin klo 10.35 Jaminurkassa</h3></p><p>Tule mukaan jumppaamaan!</p><p>Vapaa pääsy, tervetuloa!</p><p> <br> </p>" }, "name": { "fi": "Kehonhuolto ja tasapainojumppa" }, "info_url": null, "location_extra_info": { "fi": "Jaminurkka" }, "short_description": { "fi": "Kehonhuoltoa ja tasapainojumppaa maanantaisin!" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:251034/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:256908", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8215/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10672/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10674/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10675/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11733/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p556/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 57798, "license": "cc_by", "created_time": "2019-08-19T14:22:17.440979Z", "last_modified_time": "2019-08-19T14:22:17.441002Z", "name": "", "url": "https://www.helmet.fi/download/noname/{102C0BA4-1C09-4239-9B6C-31CD64372EDF}/75869", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/57798/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p16486/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p2433/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p6165/" } ], "created_time": "2023-03-10T02:22:23.600883Z", "last_modified_time": "2023-04-19T03:21:37.637829Z", "date_published": "2023-01-09T11:44:00Z", "start_time": "2023-05-18T14:00:00Z", "end_time": "2023-05-18T15:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-18':10B,28C '/kallionkielikahvila':87C,170C '00530':38C '11':37C '17':9B,27C '5':108C 'a':95C,113C,121C,139C,146C 'aihe':67C 'aika':56C 'aina':70C 'and':111C,119C,142C 'are':104C 'asio':76C 'at':107C 'bit':147C 'bit.ly':86C,169C 'bit.ly/kallionkielikahvila':85C,168C 'by':159C 'café':89C 'chat':120C 'cof':116C 'come':110C 'contact':154C 'cup':114C 'discusio':97C 'drop':158C 'en':53C 'eve':144C 'every':105C 'finnish':96C,124C,133C 'for':151C 'goal':135C 'group':98C 'halua':78C 'have':94C,112C,138C 'helsink':39C 'hiuka':52C 'if':128C 'in':90C,99C,123C 'informatio':153C 'is':136C 'it':125C 'jo':51C 'join':164C 'jote':59C 'just':157C 'jute':72C 'jutel':58C 'juuri':73C 'jännit':60C 'kalio':1A,11B,16C,18C,91C,100C 'kallion_kirjasto@hel.fi':82C,155C 'kaver':66C 'keskustelupiir':5B,23C 'kiele':4B,22C,41C 'kielikahvil':2A,17C,19C 'kirjasto':12B,29C,32C 'klo':8B,26C 'know':130C 'languag':88C 'lear':145C 'library':92C,101C 'liity':83C 'linj':36C 'list':167C 'lisä':14B 'lisätieto':79C 'littl':122C,132C 'lue':13B 'mailing':166C 'maybe':143C 'meeting':163C 'meetings':103C 'more':152C 'next':162C 'nice':140C 'of':115C 'ok':127C 'only':131C 'or':117C,156C 'osa':50C 'osoit':33C 'ota':80C 'otso':31C 'our':134C,161C,165C 'pm':109C 'postituslist':84C 'rennost':55C 'rohkeast':63C 'ryhmätil':30C 's':126C 'saat':71C 'sujuv':46C 'suome':3B,21C,40C 'taito':42C 'tarvits':44C,62C 'tea':118C 'tervetulo':15C 'the':102C,149C 'thursday':106C 'time':141C 'to':137C,160C 'toivo':48C 'torstai':7B,25C 'tärk':75C 'vaihtelev':68C 'vietä':54C 'viides':35C 'way':150C 'we':93C 'yhd':57C 'yhteyt':81C 'you':129C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<h2> Tervetuloa Kallion kielikahvilaan! <br> </h2> <p> <strong>Kallion kielikahvila</strong> on suomen kielen keskustelupiiri joka torstai klo 17-18 kirjaston ryhmätila Otsossa. Kirjaston osoite on Viides linja 11, 00530 Helsinki. </p> <p> Suomen kielen taitosi ei tarvitse olla sujuvaa, mutta toivomme, että osaat jo hiukan ennestään. Vietämme rennosti aikaa yhdessä jutellen, joten jännittää ei tarvitse.<br><br> Rohkeasti mukaan! Tuo kaverisikin!<br>Aiheet vaihtelevat - ja aina saat jutella juuri sinulle tärkeistä asioista! </p> <p> Jos haluat lisätietoja, ota yhteyttä: <a href=\"mailto:kallion_kirjasto@hel.fi\">kallion_kirjasto@hel.fi</a> </p> <p>Liity postituslistallemme: <a href=\"http://bit.ly/kallionkielikahvila?fbclid=IwAR3rhUr-mX2ZXK21YWIDxjbpq7jlh7__3HN-IzSVHi346k5qi5C9coXrJYU\">http://bit.ly/kallionkielikahvila</a></p> </p> <h2> Language Café in Kallio Library </h2> <p> We have a Finnish discussion group in Kallio Library. The meetings are every Thursday at 5 pm.<br> Come and have a cup of coffee or tea and chat a little in Finnish.<br><br> It’s OK if you know only little Finnish. Our goal is to have a nice time and maybe even learn a bit on the way. </p> <p> For more information contact: <a href=\"mailto:kallion_kirjasto@hel.fi\">kallion_kirjasto@hel.fi</a> <br> Or just drop by to our next meeting. </p> <p> Join our mailing list: <a href=\"http://bit.ly/kallionkielikahvila?fbclid=IwAR3rhUr-mX2ZXK21YWIDxjbpq7jlh7__3HN-IzSVHi346k5qi5C9coXrJYU\">http://bit.ly/kallionkielikahvila</a></p>" }, "name": { "fi": "Kallion kielikahvila" }, "info_url": null, "location_extra_info": { "fi": "Ryhmätila Otso 1. krs" }, "short_description": { "fi": "Suomen kielen keskustelupiiri joka torstai klo 17-18 Kallion kirjastossa. Lue lisää..." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:256908/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:252305", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8184/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10595/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10689/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10791/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:12005/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p13050/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 88340, "license": "cc_by", "created_time": "2023-01-10T16:23:35.193547Z", "last_modified_time": "2023-01-10T16:23:35.193573Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1BE225BE-FA3F-4724-B1A4-DA0385D27436}/99362", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/88340/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-01-10T16:25:38.794161Z", "last_modified_time": "2023-04-19T03:21:33.799102Z", "date_published": "2023-01-10T15:51:00Z", "start_time": "2023-05-16T07:00:00Z", "end_time": "2023-05-16T08:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-30.5':12C '10':16C '17.01':11C '3':81C '30':56C,65C '7.2':20C 'aika':73C 'aikuis':41C,84C 'al':80C 'ennakkoilmoittautum':94C 'erilais':48C 'hassuttelu':31C 'hausko':7B 'itäkeskuks':97C 'jolo':21C 'juttelem':68C 'jälk':60C 'järjest':10C,24C 'jäädä':63C 'kaike':74C 'kanerv':18C 'kehity':36C 'kielel':35C 'kirjasto':98C 'klo':15C 'kokoushuon':17C 'käyte':47C 'laps':34C,39C 'leik':45C 'leikkej':28C 'leikkim':67C 'liike':52C 'loru':26C,43C 'loruleik':8B 'lorut':54C 'loruttelem':96C 'loruttelu':32C 'lorutuokio':1A,9C,22C 'materiaal':49C 'minuut':57C,66C 'muide':76C 'muute':70C 'myös':89C 'nauttim':6B 'oma':83C 'osallistu':77C,90C 'poikkeuks':19C 'pääsy':92C 'rauha':75C 'runo':27C 'rytmej':50C 'saa':62C 'saava':88C 'seura':85C 'sisaruks':87C 'suhd':42C 'suosit':79C 'taapero':4A 'tervetulo':95C 'tiedo':25C 'tiistai':14C 'tila':61C 'tuke':33C,46C 'tule':5B 'tuokio':53C 'vahvist':38C 'vain':71C 'vanhem':86C 'vapa':91C 'vauvo':2A 'vielä':64C 'viettäm':72C 'vuotia':82C 'yhd':30C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lorutuokioita järjestetään 17.01.-30.5. joka tiistai klo 10 kokoushuone Kanervassa.</p><p>Poikkeuksena 7.2., jolloin lorutuokiota ei järjestetä.</p><p>Tiedossa loruja, runoja, leikkejä ja yhdessä hassuttelua! Loruttelu tukee lapsen kielellistä kehitystä ja vahvistaa lapsen ja aikuisen suhdetta. Lorujen ja leikkien tukena käytetään erilaisia materiaaleja, rytmejä ja liikettä.</p><p>Tuokiossa lorutellaan noin 30 minuuttia ja sen jälkeen tilaan saa jäädä vielä 30 minuutiksi leikkimään, juttelemaan ja muuten vain viettämään aikaa kaikessa rauhassa muiden osallistujien kanssa.</p><p>Suositellaan alle 3-vuotiaille oman aikuisen seurassa. Vanhemmat sisarukset saavat myös osallistua!</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tervetuloa loruttelemaan Itäkeskuksen kirjastoon!</p>" }, "name": { "fi": "Lorutuokiot vauvoille ja taaperoille" }, "info_url": null, "location_extra_info": null, "short_description": { "fi": "Tule nauttimaan hauskoista loruleikeistä!" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:252305/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:251028", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:15417/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10690/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11689/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 37152, "license": "cc_by", "created_time": "2017-06-09T14:13:18.165030Z", "last_modified_time": "2018-11-13T15:26:15.372289Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F45712A8-9DB2-4AF2-9DBE-0AEE672000E7}/41220", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/37152/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2023-01-02T11:23:17.512843Z", "last_modified_time": "2023-04-19T03:21:32.467119Z", "date_published": "2022-05-02T09:49:00Z", "start_time": "2023-05-15T07:35:00Z", "end_time": "2023-05-15T08:05:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'10.35':10C 'jaminurk':11C 'jumppaam':14C 'kehonhuolto':1A,4B 'klo':9C 'maanantais':7B,8C 'pääsy':16C 'tasapainojump':3A,6B 'tervetulo':17C 'tule':12C 'vapa':15C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<h3>Maanantaisin klo 10.35 Jaminurkassa</h3></p><p>Tule mukaan jumppaamaan!</p><p>Vapaa pääsy, tervetuloa!</p><p> <br> </p>" }, "name": { "fi": "Kehonhuolto ja tasapainojumppa" }, "info_url": null, "location_extra_info": { "fi": "Jaminurkka" }, "short_description": { "fi": "Kehonhuoltoa ja tasapainojumppaa maanantaisin!" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:251028/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:248102", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:8158/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:1/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10592/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:10737/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/helmet:11727/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p11406/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p14004/" } ], "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 79355, "license": "cc_by", "created_time": "2022-04-23T10:20:48.719988Z", "last_modified_time": "2022-04-23T10:20:48.720018Z", "name": "", "url": "https://www.helmet.fi/download/noname/{15CAE66A-72A0-4A57-9243-2239E6AB8C57}/92740", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "http://api.hel.fi/linkedevents/v1/image/79355/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "http://api.hel.fi/linkedevents/v1/language/fi/" } ], "audience": [], "created_time": "2022-12-13T12:22:04.125932Z", "last_modified_time": "2023-04-19T03:21:30.130729Z", "date_published": "2022-04-22T21:00:00Z", "start_time": "2023-05-11T15:00:00Z", "end_time": "2023-05-11T16:30:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "remaining_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "search_vector_fi": "'-19.30':25C '11.5':34C,48C '13.4':33C,42C '18':24C '2.2':31C,35C '2.3':32C,40C '2023':27C 'ajatuks':6B,13C 'annol':47C 'at':70C 'avo':54C 'el':46C 'hel.fi':71C 'ilmoittautu':61C 'jakam':5B,12C 'kaik':43C,55C 'ker':20C 'kevä':26C 'kiinnostun':57C 'kirj':30C 'kirjallisuud':56C 'kirjasto':17C 'klo':23C 'kokontu':19C 'kultalintu':36C 'kurto':51C 'kuuntelem':66C 'kuus':21C 'lisä':67C 'lokaku':44C 'lukukokemuks':8B,15C 'lukupiir':1A,18C,52C 'lämpim':2B,9C 'marian':50C 'munkkiniem':16C 'mustasulk':37C 'perutu':41C 'piir':58C 'silj':38C 'taiva':45C 'tapaamisker':28C 'tarvits':60C 'tervetulo':3B,10C 'tieto':68C 'torstais':22C 'tristan':49C 'tuija.lassila':69C 'tul':62C 'vain':65C 'voi':63C 'vuorikuru':39C", "search_vector_en": "", "search_vector_sv": "", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Lämpimästi tervetuloa mukaan jakamaan ajatuksia ja lukukokemuksia!</p><p>Munkkiniemen kirjaston lukupiiri kokontuu kerran kuussa torstaisin <strong>klo 18-19.30</strong>.</p><p> <strong>Kevään 2023 tapaamiskerrat ja kirjat: 2.2., 2.3., 13.4., 11.5.</strong> </p><p>2.2. <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2480721__SKultalintu%2C%20mustasulka__Orightresult__U__X7?lang=fin&suite=cobalt\">Kultalintu, mustasulka</a> / Silja Vuorikuru</p><p>2.3. Peruttu</p><p>13.4. <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2509544__Skaikki%20lokakuun%20taivaat__Orightresult__U__X7?lang=fin&suite=cobalt\">Kaikki lokakuun taivaat</a> / Elina Annola</p><p>11.5. <a href=\"https://haku.helmet.fi/iii/encore/record/C__Rb2295693__Smarianna%20kurtto__P0%2C12__Orightresult__U__X4?lang=fin&suite=cobalt\">Tristania</a> / Marianna Kurtto.</p><p>Lukupiiri on avoin kaikille kirjallisuudesta kiinnostuneille. Piiriin ei tarvitse ilmoittautua, tulla voi vaikka vain kuuntelemaan! Lisää tietoja: <strong>tuija.lassila(at)hel.fi.</strong></p>" }, "name": { "fi": "Lukupiiri" }, "info_url": null, "location_extra_info": null, "short_description": { "fi": "Lämpimästi tervetuloa mukaan jakamaan ajatuksia ja lukukokemuksia!" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/helmet:248102/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 5337, "next": "