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/?is_free=true
http://api.hel.fi/linkedevents/v1/event/?is_free=true&page=2", "previous": null }, "data": [ { "id": "linkedevents:agg-203", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [ { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58953/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58952/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58951/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58950/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58949/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58948/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58947/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58946/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58945/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58944/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58943/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58942/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58941/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58940/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58939/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58938/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58937/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58936/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58935/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58934/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58933/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58932/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58931/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58926/" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-31T23:12:52.250980Z", "last_modified_time": "2023-06-10T18:11:55.328929Z", "date_published": null, "start_time": "2023-01-10T12:00:00Z", "end_time": "2023-06-20T15:00:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": null, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "linkedevents:agg-201", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:30/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p7266/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [ { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58714/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58713/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58712/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58711/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58710/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58709/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58708/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58707/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58706/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58705/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58704/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58703/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58701/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58700/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58699/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58698/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58697/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58594/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58702/" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2022-11-17T11:14:45.141557Z", "last_modified_time": "2023-06-10T18:11:54.699207Z", "date_published": null, "start_time": "2023-01-12T11:00:00Z", "end_time": "2023-05-25T10:50:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "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": "'/alueliikunta':53C '30':48C 'alu':16B,33C 'alueliikuntapas':47C 'an':2A,19B,36C 'edellyt':46C 'galleria':13B,30C 'huhtiku':39C 'kanneltalo':12B,29C,55C 'liikun':9B,26C 'liikuntapalvelu':57C 'liikut':4A,21B,38C 'lisätiedo':50C 'livemuusiko':43C 'muka':41C 'myös':42C 'nauttim':7B,24C 'ohjatu':8B,25C 'oma':15B,32C 'osallistumin':45C 'ostam':49C 'ota':14B,31C 'taideju':40C 'taidejump':1A 'taite':3A,20B,37C 'teemo':11B,28C 'tule':5B,22C 'tun':44C 'vaihtuv':10B,27C 'www.hel.fi':52C 'www.hel.fi/alueliikunta':51C 'yhteistyö':54C", "search_vector_en": "'/aluliikunta':85C '30':73C 'accompani':59C 'april':52C 'art':1A,4A,26B,48C,54C,78C 'bring':19B,41C 'chang':17B,39C 'exercis':70C 'fit':22B,44C 'galleri':11B,33C 'guid':13B,35C 'inform':82C 'join':6B,28C 'kanneltalo':10B,32C 'let':3A,25B,47C 'live':64C 'mat':23B,45C 'move':5A,27B,49C 'musician':65C 'need':67C 'particip':75C 'pass':72C 'region':69C 'servic':71C 'session':15B,37C,56C,80C 'theme':18B,40C 'tune':62C 'us':7B,29C 'workout':2A,14B,36C,55C,79C 'www.hel.fi':84C 'www.hel.fi/aluliikunta':83C", "search_vector_sv": "'/alueliikunta':83C '30':77C 'april':61C 'behöv':72C 'berör':6A,31B,56C 'delt':69C 'eget':24B,49C 'euro':78C 'finn':62C 'förortsmotionspass':76C 'galleri':19B,44C 'gamlasgård':18B,43C 'handled':12B,37C 'information':80C 'kom':7B,32C 'konst':3A,28B,53C 'konstgymp':1A 'konstgympaträff':59C 'köp':74C 'livemusik':64C 'låt':2A,27B,52C 'mer':79C 'motion':13B,38C 'njut':10B,35C 'också':63C 'pass':71C 'plat':66C 'rör':4A,29B,54C 'ta':20B,45C 'teman':16B,41C 'underlag':25B,50C 'växl':15B,40C 'www.hel.fi':82C 'www.hel.fi/alueliikunta':81C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan. Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Huhtikuun taidejumpassa mukana myös livemuusikot. <br> <br>Tunneille osallistuminen edellyttää alueliikuntapassin (30 €) ostamista. Lisätiedot: https://www.hel.fi/alueliikunta<br> <br>Yhteistyössä Kanneltalo ja Liikuntapalvelut</p>", "sv": "<p>Kom med och njut av handledd motion med växlande teman i Gamlasgårdens galleri. Ta med dig ett eget underlag och låt konsten röra och beröra dig!</p><p>Under konstgympaträffarna i april finns också livemusiker på plats.</p><p>För att delta på passen behöver du köpa ett förortsmotionspass (30 euro).<br>Mer information: www.hel.fi/alueliikunta</p>", "en": "<p>Join us at the Kanneltalo Gallery for guided workout sessions with changing themes. Bring your own fitness mat and let art move you!</p><p>In April, the art workout sessions will be accompanied by the tunes of live musicians.</p><p>You need a regional exercise service pass (€30) to participate in the art workout sessions.<br>Further information: www.hel.fi/aluliikunta</p>" }, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten röra och beröra dig!", "en": "Art workout – let art move you!" }, "info_url": null, "location_extra_info": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan. Ota oma alusta mukaan ja anna taiteen liikuttaa!", "sv": "Kom med och njut av handledd motion med växlande teman i Gamlasgårdens galleri. Ta med dig ett eget underlag och låt konsten röra och beröra dig!", "en": "Join us at the Kanneltalo Gallery for guided workout sessions with changing themes. Bring your own fitness mat and let art move you!" }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-201/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "linkedevents:agg-208", "location": null, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [ { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59744/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59743/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59742/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59741/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59740/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59708/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59707/" }, { "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59705/" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-06-06T01:11:38.499275Z", "last_modified_time": "2023-06-10T18:11:54.051861Z", "date_published": null, "start_time": "2023-05-31T07:30:00Z", "end_time": "2023-09-05T08:15:00Z", "custom_data": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": null, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59744", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91294, "license": "event_only", "created_time": "2023-04-05T14:14:34.546904Z", "last_modified_time": "2023-04-05T14:14:34.546932Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729769.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91294/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:34.528355Z", "last_modified_time": "2023-06-10T18:11:53.418363Z", "date_published": null, "start_time": "2023-09-05T07:30:00Z", "end_time": "2023-09-05T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FD88EF2AA5807BFCEE2D966DBA06E6C6/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/FD88EF2AA5807BFCEE2D966DBA06E6C6/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/FD88EF2AA5807BFCEE2D966DBA06E6C6/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59744/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59743", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91293, "license": "event_only", "created_time": "2023-04-05T14:14:34.082634Z", "last_modified_time": "2023-04-05T14:14:34.082657Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729768.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91293/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:34.046050Z", "last_modified_time": "2023-06-10T18:11:53.402494Z", "date_published": null, "start_time": "2023-08-29T07:30:00Z", "end_time": "2023-08-29T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/73841B221DAAF2B359973F0537EF3A46/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/73841B221DAAF2B359973F0537EF3A46/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/73841B221DAAF2B359973F0537EF3A46/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59743/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59742", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91292, "license": "event_only", "created_time": "2023-04-05T14:14:33.928898Z", "last_modified_time": "2023-04-05T14:14:33.928926Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729767.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91292/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:33.889139Z", "last_modified_time": "2023-06-10T18:11:53.383466Z", "date_published": null, "start_time": "2023-08-22T07:30:00Z", "end_time": "2023-08-22T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FF58DB85E43B653C789622B653479EF2/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/FF58DB85E43B653C789622B653479EF2/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/FF58DB85E43B653C789622B653479EF2/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59742/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59741", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91286, "license": "event_only", "created_time": "2023-04-05T14:14:33.191298Z", "last_modified_time": "2023-04-05T14:14:33.191322Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729766.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91286/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:33.160620Z", "last_modified_time": "2023-06-10T18:11:53.363025Z", "date_published": null, "start_time": "2023-08-15T07:30:00Z", "end_time": "2023-08-15T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9326E19956031536E91D17ACDBF59F2E/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/9326E19956031536E91D17ACDBF59F2E/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/9326E19956031536E91D17ACDBF59F2E/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59741/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59740", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91285, "license": "event_only", "created_time": "2023-04-05T14:14:32.997068Z", "last_modified_time": "2023-04-05T14:14:32.997096Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729765.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91285/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:32.875668Z", "last_modified_time": "2023-06-10T18:11:53.342983Z", "date_published": null, "start_time": "2023-06-20T07:30:00Z", "end_time": "2023-06-20T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3D05FE9D7825ADFA316E7B36B705D10C/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/3D05FE9D7825ADFA316E7B36B705D10C/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/3D05FE9D7825ADFA316E7B36B705D10C/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59740/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59708", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91283, "license": "event_only", "created_time": "2023-04-05T14:14:32.287155Z", "last_modified_time": "2023-04-05T14:14:32.287180Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729763.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91283/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:32.259833Z", "last_modified_time": "2023-06-10T18:11:53.322232Z", "date_published": null, "start_time": "2023-06-06T07:30:00Z", "end_time": "2023-06-06T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D9436CDCC6F5516044A01D78EA67F702/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/D9436CDCC6F5516044A01D78EA67F702/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/D9436CDCC6F5516044A01D78EA67F702/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59708/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59707", "location": null, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91284, "license": "event_only", "created_time": "2023-04-05T14:14:32.714041Z", "last_modified_time": "2023-04-05T14:14:32.714063Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729764.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91284/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:32.689740Z", "last_modified_time": "2023-06-10T18:11:53.303180Z", "date_published": null, "start_time": "2023-06-13T07:30:00Z", "end_time": "2023-06-13T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DB72F1A62FFA3F0006E007B5407680CD/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/DB72F1A62FFA3F0006E007B5407680CD/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/DB72F1A62FFA3F0006E007B5407680CD/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59707/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59705", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7254/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:105/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:31/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:348/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:46/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p1808/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-208/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 91278, "license": "event_only", "created_time": "2023-04-05T14:14:31.784166Z", "last_modified_time": "2023-04-05T14:14:31.784191Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729762.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/91278/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p4354/" } ], "created_time": "2023-04-05T14:14:31.767565Z", "last_modified_time": "2023-06-10T18:11:53.285000Z", "date_published": null, "start_time": "2023-05-31T07:30:00Z", "end_time": "2023-05-31T08:15: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": "'0':36C,160C '10.30':121C,128C,132C,136C,142C,146C,150C,154C '13.6':130C '15.8':140C '20.6':134C '22.8':144C '29.8':148C '31.5':119C '40':59C '5.9':152C '6.6':126C '7':37C,161C 'a':5B,20C,65C,70C 'a-lav':4B,19C,64C,69C 'a.lava':166C 'a.lavalle':109C 'alkukes':116C 'annantalo':2B,17C,67C,97C 'ennakkoilmoittautum':102C 'etup':110C 'facebook':99C 'facebook-sivu':98C 'halut':85C 'hetk':94C 'huom':105C,122C 'ikäsuositus':159C 'ilmoit':96C 'istuinalust':89C 'istumapaiko':83C 'jote':84C 'kannat':75C 'kansakouluku':114C 'katetu':73C 'katoks':79C 'kaut':111C 'ke':118C 'kestäv':58C 'kesä':53C 'kesäku':106C 'kesämuskar':1A,3B,18C,33C 'kieli':157C 'klo':120C,127C,131C,135C,141C,145C,149C,153C 'koko':40C 'kulku':108C 'kulue':54C 'kutsuv':7B,22C 'laulam':8B,23C 'lava':6B,21C,66C,71C 'leikkim':9B,24C 'liikkum':10B,25C 'loppukes':137C 'loruttelem':12B,27C 'lämpim':155C 'mahdollis':92C 'minuut':60C 'muskar':52C,57C,117C,138C 'muskariop':14B,29C 'osallistu':48C 'ot':87C 'paasolais':16B,31C 'paik':165C 'perh':41C 'peruutuks':95C 'pide':63C 'poikkeav':123C 'puole':115C 'päivä':124C 'pääsy':104C,164C 'rajatu':82C 'sisä':80C 'sivu':100C 'suomi':158C 'suunnatu':35C 'sään':77C 'takapih':68C 'takaport':113C 'tervetulo':156C 'tervetulu':45C 'ti':125C,129C,133C,139C,143C,147C,151C 'tilant':55C 'tuuli':15B,30C 'useamp':51C 'vaar':43C 'vapa':103C,163C 'varautu':76C 'vauva':42C 'viime':93C 'vilt':91C 'voit':47C,86C 'vuotia':38C,162C 'yhd':13B,28C 'yht':49C", "search_vector_en": "'0':171C '10.30':183C,192C,198C,204C,210C,216C,222C,228C '13':196C '15':208C '20':202C '22':214C '29':220C '31':181C '40':91C '5':226C '6':190C '7':59C,172C 'a.lava':154C 'access':152C 'age':58C,169C 'aim':55C 'annantalo':101C,143C 'annatalo':11B,33C 'august':207C,213C,219C 'babi':67C 'back':162C 'behind':100C 'best':110C 'blanket':129C 'bring':124C 'cancel':137C 'canopi':122C 'children':1A,16B,38C,57C 'class':5A,9B,31C,53C,83C,89C,178C 'cover':106C 'dress':112C 'entri':174C 'facebook':144C 'famili':65C 'finnish':168C 'free':173C 'front':157C 'gate':163C 'grandpar':69C 'held':95C 'instructor':25B,47C 'invit':15B,37C 'join':73C 'june':148C,189C,195C,201C 'kansakoulukuja':166C 'languag':167C 'last':90C,135C 'last-minut':134C 'limit':118C 'may':180C 'minut':92C,136C 'move':19B,41C 'music':4A,8B,24B,30C,46C,52C,82C,88C,177C 'note':146C 'notic':186C 'one':79C 'paasolainen':27B,49C 'pad':127C 'page':145C 'particip':77C 'play':21B,43C 'pls':185C 'post':140C 'recommend':170C 'seat':119C,126C 'sept':225C 'sing':18B,40C 'stage':14B,36C,99C,104C 'summer':3A,7B,29C,51C,86C,176C 'togeth':22B,44C 'tue':188C,194C,200C,206C,212C,218C,224C 'tuuli':26B,48C 'weather':115C 'wed':179C 'wednedsay':187C 'welcom':71C 'whole':64C 'wish':132C 'yard':158C 'younger':61C", "search_vector_sv": "'0':46C,146C '10.30':155C,161C,165C,169C,173C,177C,181C,185C '13.6':163C '15.8':171C '20.6':167C '2023':151C '22.8':175C '29.8':179C '31.5':153C '40':70C '5.9':183C '6.6':159C '7':47C,147C 'a':5B,25C,76C,81C 'a.lava':133C 'annegård':2B,22C,79C,123C 'antal':99C 'avbokning':120C 'avsed':44C 'bakgård':80C 'bakport':138C 'barn':9B,29C 'bebis':53C 'begräns':98C 'bered':91C 'bjud':7B,27C 'bra':88C 'delt':60C 'eventuell':118C 'facebooksid':124C 'familj':51C 'farf':55C 'filt':117C 'finn':97C,128C 'finsk':144C 'fler':64C 'fritt':148C 'genom':134C,137C 'gärn':108C 'gård':135C 'hel':50C 'håll':74C 'in':8B,28C 'inträd':149C 'juni':127C 'kansakoulukuj':142C 'kl':154C,160C,164C,168C,172C,176C,180C,184C 'lång':72C 'meddel':121C 'minut':71C 'musiklekis':65C,68C 'musiklekislär':19B,39C 'obs':125C,156C 'ons':152C 'onsdag':157C 'paasolain':21B,41C 'plats':100C 'rör':14B,34C 'sagoter':16B,36C 'scen':6B,26C,77C,82C 'sen':119C 'sidan':140C 'sittunderlag':115C 'sjung':12B,32C 'slag':94C 'somm':67C 'sommarmusiklekis':1A,3B,23C,42C,150C 'spel':13B,33C 'språk':143C 't.ex':114C 'ta':107C 'taket':102C 'tillgång':131C 'tillsamman':17B,37C 'tis':158C,162C,166C,170C,174C,178C,182C 'tuuli':20B,40C 'täck':84C 'vill':106C 'väd':95C 'välkomm':57C 'åldersrekommendation':145C 'åring':48C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe \"vauvasta vaariin\" on tervetullut mukaan! Voitte osallistua yhteen tai useampaan muskariin kesän kuluessa tilanteenne mukaan.</p><p>Muskarit kestävät 40 minuuttia ja ne pidetään A-lavalla Annantalon takapihalla.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla. Ei ennakkoilmoittautumista. Vapaa pääsy. <br>HUOM! Kesäkuussa ei kulkua A.lavalle etupihan kautta, vaan takaportista Kansakoulukujan puolelta.</p><p><b>Alkukesän muskarit:</b><br>Ke 31.5. klo 10.30 (huom. poikkeava päivä!)<br>Ti 6.6. klo 10.30<br>Ti 13.6. klo 10.30<br>Ti 20.6. klo 10.30</p><p><b>Loppukesän muskarit:</b><br>Ti 15.8. klo 10.30<br>Ti 22.8. klo 10.30<br>Ti 29.8. klo 10.30 <br>Ti 5.9. klo 10.30</p><p><b>Lämpimästi tervetuloa!</b></p><p>Kieli: suomi<br>Ikäsuositus: 0–7-vuotiaat<br>Vapaa pääsy <br>Paikka: A.lava</p>", "sv": "<p>Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.</p><p>Sommarmusiklekisen är avsedd för 0–7-åringar, men hela familjen, från bebis till farfar, är välkommen! Du kan delta i en eller flera musiklekisar under sommaren. Musiklekisen är 40 minuter lång och hålls på A•scenen på Annegårdens bakgård.</p><p>A•scenen är täckt, men det är bra att vara beredd på alla slags väder. Det finns begränsat antal platser under taket, så om du vill, ta gärna med något att sitta på (t.ex. sittunderlag eller filt).<br>Eventuella sena avbokningar meddelas på Annegårdens Facebooksida.<br>Obs: I juni finns det ingen tillgång till A.lava genom gården, utan genom bakporten från sidan av Kansakoulukuja.</p><p>Språk: finska<br>Åldersrekommendation: 0–7<br>Fritt inträde</p><p><b>Sommarmusiklekisen 2023</b><br>Ons 31.5 kl. 10.30 (obs: onsdag) <br>Tis 6.6 kl. 10.30<br>Tis 13.6 kl. 10.30<br>Tis 20.6 kl. 10.30</p><p>Tis 15.8 kl. 10.30<br>Tis 22.8 kl. 10.30<br>Tis 29.8 kl. 10.30<br>Tis 5.9 kl. 10.30</p>", "en": "<p>The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen.</p><p>The summer music classes are aimed at children aged 7 or younger, but the whole family from babies to grandparents is welcome to join in! You can participate in one or more music classes during the summer. The music classes last 40 minutes and are held on the A•stage behind Annantalo.</p><p>The A•stage is covered, but it is best to dress for the weather. There are limited seats under the canopy, so bring a seat pad or blanket if you wish. Any last-minute cancellations will be posted on the Annantalo Facebook page.<br>Note: In June, there is no access to A.lava through the front yard, but through the back gate from the Kansakoulukuja.</p><p>Language: Finnish<br>Age recommendation: 0–7<br>Free entry</p><p><b>All summer music classes:</b><br>Wed May 31 at 10.30 AM (pls notice: Wednedsay)<br>Tue June 6 at 10.30 AM<br>Tue June 13 at 10.30 AM<br>Tue June 20 at 10.30 AM</p><p>Tue August 15 at 10.30 AM<br>Tue August 22 at 10.30 AM<br>Tue August 29 at 10.30 AM<br>Tue Sept 5 at 10.30 AM</p>" }, "name": { "fi": "Kesämuskari", "sv": "Sommarmusiklekis", "en": "Children’s summer music classes" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8DC84B5C0A178287532D92E990193BD7/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/8DC84B5C0A178287532D92E990193BD7/Sommarmusiklekis", "en": "http://www.annantalo.fi/en/events/event/8DC84B5C0A178287532D92E990193BD7/Children_s_summer_music_classes" }, "location_extra_info": null, "short_description": { "fi": "Annantalon Kesämuskarit A-lavalla kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Annegårdens Sommarmusiklekisar på A•scenen bjuder in barnen till att sjunga, spela, röra och sagotera tillsammans med musiklekislärare Tuuli Paasolainen.", "en": "The summer music classes at Annatalo’s A•stage invite children to sing, move and play together with music instructor Tuuli Paasolainen." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:59705/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58953", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87772, "license": "event_only", "created_time": "2022-12-22T10:13:18.623840Z", "last_modified_time": "2022-12-22T10:13:18.623859Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725616.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87772/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:18.614791Z", "last_modified_time": "2023-06-10T18:11:52.856857Z", "date_published": null, "start_time": "2023-06-20T11:00:00Z", "end_time": "2023-06-20T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9AF080C241B87D5571C7A6FCDB6ED44A/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9AF080C241B87D5571C7A6FCDB6ED44A/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/9AF080C241B87D5571C7A6FCDB6ED44A/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58953/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58952", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87771, "license": "event_only", "created_time": "2022-12-22T10:13:18.568624Z", "last_modified_time": "2022-12-22T10:13:18.568646Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725615.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87771/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:18.555645Z", "last_modified_time": "2023-06-10T18:11:52.836445Z", "date_published": null, "start_time": "2023-06-13T11:00:00Z", "end_time": "2023-06-13T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8C764817FAF852FD8309675A783073E0/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8C764817FAF852FD8309675A783073E0/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/8C764817FAF852FD8309675A783073E0/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58952/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58951", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87770, "license": "event_only", "created_time": "2022-12-22T10:13:18.517178Z", "last_modified_time": "2022-12-22T10:13:18.517194Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725614.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87770/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:18.507552Z", "last_modified_time": "2023-06-10T18:11:52.817742Z", "date_published": null, "start_time": "2023-06-06T11:00:00Z", "end_time": "2023-06-06T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/471EA2CF5316456AC1F8B5872589AAF2/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/471EA2CF5316456AC1F8B5872589AAF2/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/471EA2CF5316456AC1F8B5872589AAF2/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58951/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58950", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87769, "license": "event_only", "created_time": "2022-12-22T10:13:18.469678Z", "last_modified_time": "2022-12-22T10:13:18.469698Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725613.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87769/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:18.459631Z", "last_modified_time": "2023-06-10T18:11:52.795684Z", "date_published": null, "start_time": "2023-05-30T11:00:00Z", "end_time": "2023-05-30T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/775BA17CAA406A4AE641F76BC452501D/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/775BA17CAA406A4AE641F76BC452501D/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/775BA17CAA406A4AE641F76BC452501D/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58950/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58949", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87768, "license": "event_only", "created_time": "2022-12-22T10:13:18.059656Z", "last_modified_time": "2022-12-22T10:13:18.059677Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725612.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87768/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:18.047213Z", "last_modified_time": "2023-06-10T18:11:52.774100Z", "date_published": null, "start_time": "2023-05-23T11:00:00Z", "end_time": "2023-05-23T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/07247BA25F7E094404578D2711CFB8F4/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/07247BA25F7E094404578D2711CFB8F4/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/07247BA25F7E094404578D2711CFB8F4/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58949/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58948", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87767, "license": "event_only", "created_time": "2022-12-22T10:13:17.669685Z", "last_modified_time": "2022-12-22T10:13:17.669704Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725611.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87767/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:17.659183Z", "last_modified_time": "2023-06-10T18:11:52.757278Z", "date_published": null, "start_time": "2023-05-16T11:00:00Z", "end_time": "2023-05-16T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/45FA65FD9ED9CAF41D548B82BC1540E5/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/45FA65FD9ED9CAF41D548B82BC1540E5/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/45FA65FD9ED9CAF41D548B82BC1540E5/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58948/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58947", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87766, "license": "event_only", "created_time": "2022-12-22T10:13:17.430211Z", "last_modified_time": "2022-12-22T10:13:17.430224Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725610.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87766/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:17.420585Z", "last_modified_time": "2023-06-10T18:11:52.740001Z", "date_published": null, "start_time": "2023-05-09T11:00:00Z", "end_time": "2023-05-09T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CD1C08132EB294BD88784FE6B5FB9230/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CD1C08132EB294BD88784FE6B5FB9230/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/CD1C08132EB294BD88784FE6B5FB9230/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58947/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58946", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87765, "license": "event_only", "created_time": "2022-12-22T10:13:17.284387Z", "last_modified_time": "2022-12-22T10:13:17.284406Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725609.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87765/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:17.273766Z", "last_modified_time": "2023-06-10T18:11:52.719843Z", "date_published": null, "start_time": "2023-05-02T11:00:00Z", "end_time": "2023-05-02T15: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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D2FB13694A1221EFF895DB1E44334354/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D2FB13694A1221EFF895DB1E44334354/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/D2FB13694A1221EFF895DB1E44334354/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58946/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:58945", "location": { "@id": "http://api.hel.fi/linkedevents/v1/place/tprek:7255/" }, "keywords": [ { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:41/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:52/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:53/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:54/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:55/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/kulke:596/" }, { "@id": "http://api.hel.fi/linkedevents/v1/keyword/yso:p39492/" } ], "super_event": { "@id": "http://api.hel.fi/linkedevents/v1/event/linkedevents:agg-203/" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 87764, "license": "event_only", "created_time": "2022-12-22T10:13:17.164058Z", "last_modified_time": "2022-12-22T10:13:17.164100Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725608.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "http://api.hel.fi/linkedevents/v1/image/87764/", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2022-12-22T10:13:17.151378Z", "last_modified_time": "2023-06-10T18:11:52.700413Z", "date_published": null, "start_time": "2023-04-25T11:00:00Z", "end_time": "2023-04-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": "'abou':72C 'advic':17B,40C 'al':73C 'and':16B,22B,39C,45C,78C,83C,91C,96C 'ask':68C 'asumis':62C 'can':67C 'citizenship':89C 'city':20B,43C,75C 'contact':98C 'daycar':77C 'digital':80C 'digitue':61C 'esimerk':53C 'events':82C 'exampl':71C 'finland':94C 'for':70C 'harrastuks':59C 'health':95C 'healthcar':97C 'helsing':6B,29C 'helsink':2A,19B,42C,74C 'helsinki-info':1A 'hobbies':84C 'immigratio':24B,47C,85C 'in':93C 'info':3A 'informatio':15B,38C,99C 'issues':86C 'kansalaisuud':63C 'kaupung':7B,30C 'koulu':57C 'kysy':51C 'kysymyks':12B,35C 'last':54C 'liittyv':11B,34C 'maahanmuuto':10B,33C 'matters':26B,49C 'neuvont':5B,28C 'offer':14B,37C 'oleskeluluv':60C 'opiskelu':65C 'palvelu':8B,31C 'perm':88C 'päiväkod':55C 'related':25B,48C 'residenc':87C 'schools':79C 'services':21B,44C,76C 'studying':92C 'support':81C 'tarj':4B,27C 'terveyd':64C 'töis':58C 'us':69C 'voit':50C 'we':13B,36C 'working':90C 'you':66C", "search_vector_en": "'advic':8B,22C 'ask':34C 'citi':2A,11B,25C,41C 'citizenship':55C 'contact':64C 'daycar':43C 'digit':46C 'event':48C 'exampl':37C 'finland':60C 'health':61C 'healthcar':63C 'helsinki':1A,10B,24C,40C 'hobbi':50C 'immigr':15B,29C,51C 'inform':3A,6B,20C,65C 'issu':52C 'matter':17B,31C 'offer':5B,19C 'permit':54C 'relat':16B,30C 'resid':53C 'school':45C 'servic':12B,26C,42C 'studi':58C 'support':47C 'us':35C 'work':56C", "search_vector_sv": "'erbjud':5B,16C 'evenemang':35C 'exempel':31C 'fråg':28C 'helsingfor':1A,10B,21C 'information':8B,19C 'invandringsfråg':14B,25C,37C 'kontaktuppgift':36C 'rådgivning':3A,6B,17C 'stad':2A,11B,22C,33C 'tjänst':12B,23C,34C", "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.</p><p>Voit kysyä meiltä esimerkiksi<br>• lasten päiväkodista ja koulusta<br>• töistä<br>• harrastuksista<br>• oleskeluluvasta<br>• digituesta<br>• asumisesta<br>• kansalaisuudesta<br>• terveydestä<br>• opiskelusta</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>", "sv": "<p>Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.</p><p>Du kan fråga oss till exempel om<br>- stadens tjänster<br>- evenemang<br>- kontaktuppgifter<br>- invandringsfrågor</p>", "en": "<p>We offer information and advice on Helsinki City services and on immigration related matters.</p><p>You can ask us, for example, about<br>• all Helsinki city services<br>• daycare and schools<br>• digital support<br>• events and hobbies<br>• immigration issues<br>• residence permit<br>• citizenship<br>• working and studying in Finland<br>• health and healthcare<br>• contact information</p>" }, "name": { "fi": "Helsinki-info", "sv": "Helsingfors stads rådgivning", "en": "Helsinki City Information" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B2141B840165D6148C73E693F5FB30EF/Helsinki-info", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B2141B840165D6148C73E693F5FB30EF/Helsingfors_stads_radgivning", "en": "http://www.kanneltalo.fi/en/events/event/B2141B840165D6148C73E693F5FB30EF/Helsinki_City_Information" }, "location_extra_info": null, "short_description": { "fi": "Tarjoamme neuvontaa Helsingin kaupungin palveluihin ja maahanmuuttoon liittyvistä kysymyksistä. // We offer information and advice on Helsinki City services and on immigration related matters.", "sv": "Vi erbjuder rådgivning och information om Helsingfors stads tjänster och invandringsfrågor.", "en": "We offer information and advice on Helsinki City services and on immigration related matters." }, "provider": null, "@id": "http://api.hel.fi/linkedevents/v1/event/kulke:58945/", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 102786, "next": "