Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=1132
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1133", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1131" }, "data": [ { "id": "kulke:60131", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 3924, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:35.226260Z", "last_modified_time": "2023-09-07T14:18:35.226279Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727785.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3924/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:34.830628Z", "last_modified_time": "2023-11-14T06:13:04.848969Z", "date_published": null, "start_time": "2023-06-15", "end_time": "2023-09-23", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Vuotalon rinnakkaisnäyttelyssä on esillä valokuvia ja haastatteluvideo afrosuomalaisen Good Hair Day -kollektiivin toiminnasta.</p><p>Menneiden vuosikymmenien näkökulmaa tuovat henkilöhistorialliset poiminnat afrosuomalaisista 1800- ja 1900-luvuilla. Elokuussa Vuotalossa järjestetään työpaja, jossa kerätään osallistujien omia kuvia osaksi näyttelyä.</p><p>Helsingin kaupunginmuseon Being Black – poimintoja afrosuomalaisuudesta -rinnakkaisnäyttely avautuu 15.6. Vuotalossa. Näyttelyn avulla halutaan lisätä afrosuomalaisuuteen liittyvää tietoisuutta kertomalla, kuinka afrosuomalaiset ovat osa Helsinkiä ja helsinkiläisyyttä sekä vahvistaa afrosuomalaista kulttuuriperintöä.</p>", "sv": "<p>På parallellutställningen i Nordhuset visas fotografier och en intervjuvideo om det afrofinländska Good Hair Day-kollektivets verksamhet.</p><p>Perspektiv på gångna årtionden öppnas av personhistoriska glimtar om afrofinländare på 1800- och 1900-talen. I augusti ordnas i Nordhuset en verkstad där deltagarnas egna bilder samlas in för att fogas till utställningen.</p><p>Helsingfors stadsmuseums parallellutställning Being Black – glimtar ur livet som afrofinländare öppnas 15 juni i Nordhuset. Med hjälp av utställningen vill man öka medvetenheten om afrofinländskhet genom att berätta på vilka sätt afrofinländarna är en del av Helsingfors-identiteten och Helsingfors samt stärka det afrofinländska kulturarvet.</p>", "en": "<p>The Vuotalo parallel exhibition will feature photographs and an interview video on the activities of the Afro-Finnish Good Hair Day collective.</p><p>To add some perspective in terms of past decades, the exhibition will also shed light on some Afro Finns from the 19th and 20th centuries. In August, Vuotalo will be hosting a workshop to collect photos from visitors to include in the exhibition.</p><p>Helsinki City Museum’s Being Black – Afro Finns’ Experiences parallel exhibition will open at Vuotalo on 15 June. The purpose of the exhibition is to raise awareness of Afro-Finnish culture by telling how the Afro Finns are part of Helsinki and the Helsinki identity, and to strengthen the Afro-Finnish cultural heritage in the museum’s collections.</p>" }, "name": { "fi": "Being Black – poimintoja afrosuomalaisuudesta – Helsingin kaupunginmuseon rinnakkaisnäyttely Vuotalossa", "sv": "Being Black – glimtar ur livet som afrofinländare – Helsingfors stadsmuseums parallellutställning i Nordhuset", "en": "Being Black – Afro Finns’ Experiences – Helsinki City Museum’s parallel exhibition at Vuotalo" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_poimintoja_afrosuomalaisuudesta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_glimtar_ur_livet_som_afrofinlandare", "en": "http://www.vuotalo.fi/en/events/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_Afro_Finns_Experiences" }, "provider": null, "short_description": { "fi": "Vuotalon rinnakkaisnäyttelyssä on esillä valokuvia ja haastatteluvideo afrosuomalaisen Good Hair Day -kollektiivin toiminnasta.", "sv": "På parallellutställningen i Nordhuset visas fotografier och en intervjuvideo om det afrofinländska Good Hair Day-kollektivets verksamhet.", "en": "The Vuotalo parallel exhibition will feature photographs and an interview video on the activities of the Afro-Finnish Good Hair Day collective." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60131/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270435", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18855/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5887, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-07T15:21:40.049529Z", "last_modified_time": "2023-11-07T15:21:40.049544Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7AF5225E-FED0-4079-B8EC-21946D260714}/107315", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5887/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-11-07T15:21:40.034249Z", "last_modified_time": "2023-11-13T21:22:37.053771Z", "date_published": "2023-11-07T08:00:00Z", "start_time": "2023-11-13T15:00:00Z", "end_time": "2023-11-13T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Nuorten digimaalaus-työpajassa pääset tekemään oman digimaalauksen ammattilaisen avulla Ipadin Procreate-sovelluksella. Maalaukset tulostetaan ja niistä tehdään joulukoristeita ja joulukortteja. Ota siis varaslähtö jouluun ja tule askartelemaan joulukoriste tai joulukortteja digimaalauksen keinoin Pähkinärinteen kirjastolle ma 13.11. klo 17-19. Työpaja on suunnattu 13-17-vuotiaille nuorille. Työpajan vetäjänä toimii Riika Anundi. Vapaa pääsy. Ei ennakkoilmoittautumista. </p>" }, "name": { "fi": "Nuorten digimaalaus-työpaja" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Tervetuloa tekemään digimaalauksen keinoin joulukoristeita ja -kortteja Pähkinärinteen kirjastolle!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60405", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4205, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:44.855039Z", "last_modified_time": "2023-09-07T14:21:44.855058Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731903.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4205/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:44.712940Z", "last_modified_time": "2023-11-13T21:13:30.124251Z", "date_published": null, "start_time": "2023-09-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Helsinki Biennaali rantautuu kulttuuritaloihin ympäri Helsinkiä! Osana Helsinki Biennaalin ohjelmaa toteutetaan elokuvanäytöksiä HAMin mediataidekokoelmasta.</p><p>Esitettävät teokset on valinnut Biennaalin 2023 kuraattori Joasia Krysa ja koordinoiva kuraattori Petronella Grönroos. Teoksia yhdistävät Biennaalin 2023 käsitteet kontaminaatio, uusiutuminen ja toimijuus. Teokset peilaavat nuorten maailmannäkemyksiä, faktan ja fiktion välistä hienovaraista rajaa ja pohtivat tulevaisuutta. Vuoden 2023 Helsinki Biennaalin nimi Uusia suuntia voi syntyä viittaa vaihtoehtoiseen tapaan elää maailmassa ja ymmärtää sitä – sekä kuvitella muita mahdollisia tulevaisuuksia.</p><p>Elokuvanäytöksen aluksi Helsinki Biennaalin henkilökunta johdattelee vuoden 2023 Biennaalin teemoihin. Tämän jälkeen esitetään n. 45 minuutin mittainen elokuvanäytös. Kaikille avoimet näytökset ovat maksuttomia, eikä niihin tarvitse ilmoittautua etukäteen.</p>", "sv": "<p>Helsingforsbiennalen kommer till kulturhus runtom i Helsingfors! Som en del av Helsingforsbiennalens program genomförs bioföreställningar ur HAM:s mediekonstsamling.</p><p>Verken som visas har valts ut av Joasia Krysa, Biennalens kurator 2023 och Petronella Grönroos, koordinerande kurator. Verken förenas av temana för Biennalen 2023: kontaminering, förnyelse och aktivism. Verken speglar ungas världsåskådningar, den fina linjen mellan fakta och fiktion, och utmanar till att fundera över framtiden. Nya riktningar, namnet på Helsingforsbiennalen 2023, kan ge upphov till en hänvisning till ett annat sätt att leva i världen och förstå den samt föreställa sig andra alternativa framtider.</p><p>I början av bioföreställningen leder personalen på Helsingforsbiennalen publiken till temana kring Biennalen 2023. Därefter visas en cirka 45 minuter lång film. De kostnadsfria föreställningarna är öppna för alla och man behöver inte anmäla sig till dem på förhand.</p>", "en": "<p>Helsinki Biennial arrives in Helsinki’s cultural centres! The programme of the Helsinki Biennial includes film screenings from HAM’s media art collection.</p><p>The screenings have been selected by Joasia Krysa, curator of the Biennial 2023, and coordinating curator Petronella Grönroos. The works are linked by the Biennial 2023 concepts of contamination, renewal and agency. The works reflect young people’s perceptions of the world and the fine line between fact and fiction, as well as consider what the future holds. The title of the 2023 Helsinki Biennial, New Directions May Emerge, refers to exploring a way of living in and understanding the world – and imagining other possible futures.</p><p>Before the screening, the staff of the Helsinki Biennial introduces the themes of the 2023 Biennial. This is followed by a film screening of around 45 minutes. The screenings, which are open to all, are free of charge and do not require registration in advance.</p>" }, "name": { "fi": "Helsinki Biennaalin elokuvanäytös: teoksia HAMin kokoelmasta", "sv": "Helsingforsbiennalens bioföreställning: verk ur HAM:s samling", "en": "Helsinki Biennial film screening: works from HAM’s collection" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FE8517EE6E051A09DF01726D82D1D27E/Helsinki_Biennaalin_elokuvanaytos_teoksia_HAMin_kokoelmasta_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FE8517EE6E051A09DF01726D82D1D27E/Helsingforsbiennalens_bioforestallning_verk_ur_HAM_s_samling_", "en": "http://www.kanneltalo.fi/en/events/event/FE8517EE6E051A09DF01726D82D1D27E/Helsinki_Biennial_film_screening_works_from_HAM_s_collection_" }, "provider": null, "short_description": { "fi": "Helsinki Biennaali rantautuu kulttuuritaloihin ympäri Helsinkiä! Osana Helsinki Biennaalin ohjelmaa toteutetaan elokuvanäytöksiä HAMin mediataidekokoelmasta.", "sv": "Helsingforsbiennalen kommer till kulturhus runtom i Helsingfors! Som en del av Helsingforsbiennalens program genomförs bioföreställningar ur HAM:s mediekonstsamling.", "en": "Helsinki Biennial arrives in Helsinki’s cultural centres! The programme of the Helsinki Biennial includes film screenings from HAM’s media art collection." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60405/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60134", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/linda-fredriksson-juniper-vuotalo-17198695/", "sv": "https://www.lippu.fi/event/linda-fredriksson-juniper-vuotalo-17198695/", "en": "https://www.lippu.fi/event/linda-fredriksson-juniper-vuotalo-17198695/" }, "price": { "fi": "23 €", "sv": "23 €", "en": "23 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:45.250502Z", "last_modified_time": "2023-09-07T14:21:45.250525Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730696.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:45.075804Z", "last_modified_time": "2023-11-13T21:13:30.043380Z", "date_published": null, "start_time": "2023-09-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Linda Fredriksson on noussut nopeasti yhdeksi maamme valovoimaisimmista saksofonisteista ja jazzmuusikoista.</p><p>Fredrikssonin debyyttialbumi Juniper on ihastuttanut kriitikoita ja yleisöä yli genrerajojen. Juniper palkittiin Vuoden Jazz Emma -palkinnolla sekä arvostetulla Teosto-palkinnolla vuonna 2022. Fredriksson on saanut uransa aikana myös monia muita palkintoja ja tunnustusta muusikkoudestaan. Juniper tuo kuultavaksemme Lindan \"hiljaisen ja ujon puolen” säveltämää musiikkia: rehellistä, yksityistä ja sielultaan singer-songwriter-musiikkia jazz-yhtyeen soittamana.</p><p>Linda Fredriksson on säveltänyt musiikkia mm. teatteriin, elokuviin ja esitystaideteoksiin sekä esiintynyt laajalla skaalalla monen muusikon kanssa. Hänen yhteistyökumppaneitaan ovat olleet mm. Timo Lassy, Raoul Björkenheim, Ultra Bra, Pyhimys, Jimi Tenor, The Valkyrians, The Northern Governors, Niillas Holmberg ja European Jazz Orchestra.</p><p>Koonpano:<br>Linda Fredriksson, saksofonit<br>Tuomo Prättälä, koskettimet<br>Mikael Saastamoinen, basso<br>Olavi Louhivuori, rummut</p><p>Liput 23 € / Lippu.fi<br>Kesto: 75 min, ei väliaikaa<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. <br>Sali avautuu klo 17.30.</p>", "sv": "<p>Linda Fredriksson har snabbt blivit en av landets ljusstarkaste saxofonister och jazzmusiker.</p><p>Fredriksson har komponerat musik bland annat till teater, film och performancekonstverk samt uppträtt med ett brett spektrum av andra musiker. Debutalbumet Juniper har charmerat kritiker och publik över genregränserna. Juniper belönades med priset Årets Jazz Emma samt det högt skattade Teosto-priset 2022.</p>", "en": "<p>Linda Fredriksson has quickly become one of the country’s most prominent saxophonists and jazz musicians.</p><p>Fredriksson has composed music for theatre, film and performance art and performed extensively with a wide range of musicians. The artist’s debut album Juniper has delighted critics and audiences across genres. Juniper was recognised with the Jazz Emma of the Year Award and the prestigious Teosto Prize in 2022.</p>" }, "name": { "fi": "Linda Fredriksson: Juniper", "sv": "Linda Fredriksson: Juniper", "en": "Linda Fredriksson: Juniper" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/42869AA63BD7BCF4B822B4130A405547/Linda_Fredriksson_Juniper", "sv": "http://www.vuotalo.fi/sv/evenemang/event/42869AA63BD7BCF4B822B4130A405547/Linda_Fredriksson_Juniper", "en": "http://www.vuotalo.fi/en/events/event/42869AA63BD7BCF4B822B4130A405547/Linda_Fredriksson_Juniper" }, "provider": null, "short_description": { "fi": "Linda Fredriksson on noussut nopeasti yhdeksi maamme valovoimaisimmista saksofonisteista ja jazzmuusikoista.", "sv": "Linda Fredriksson har snabbt blivit en av landets ljusstarkaste saxofonister och jazzmusiker.", "en": "Linda Fredriksson has quickly become one of the country’s most prominent saxophonists and jazz musicians." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60134/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60399", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4204, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:44.498805Z", "last_modified_time": "2023-09-07T14:21:44.498826Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733022.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4204/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:44.354141Z", "last_modified_time": "2023-11-13T21:13:29.958980Z", "date_published": null, "start_time": "2023-09-14T14:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä.</p><p>Kurssin ensimmäisellä kerralla syvennymme eläimen rakenteeseen ja valmistamme eläinveistokset kivitavarasavesta. Toisella kerralla jatkamme raakapoltettujen esineiden pintakäsittelyllä käyttäen erilaisia keramiikan värejä ja lasitteita. Työt jäävät vielä toiseen polttoon, jonka jälkeen ne voi noutaa Malmitalosta.</p><p>Kurssipäivät ja -ajat ovat seuraavat (ilmoittautuneet sitoutuvat osallistumaan molemmille kerroille):<br>14.9. 17.30–19.45<br>28.9. 17.30–19.45</p><p>Huom! Kurssi on täyteen varattu. Voit ilmoittautua jonoon sähköpostitse: anni.hiekkala@hel.fi<br>Kurssi on tarkoitettu vanhempi-lapsi-pareille.</p><p>Ohjauskieli on suomi.<br>Kurssi on maksuton ja se soveltuu yli 3-vuotiaille lapsille aikuisen kanssa.</p>" }, "name": { "fi": "Lintuja ja liskoja – keramiikan perhekurssi" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFE490F953F75B7EDD7EDBBB5422C3C4/Lintuja_ja_liskoja_keramiikan_perhekurssi" }, "provider": null, "short_description": { "fi": "Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60399/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60408", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": { "fi": "14 €", "sv": "14 €", "en": "14 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4202, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:42.440205Z", "last_modified_time": "2023-09-07T14:21:42.440223Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732128.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4202/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:42.110418Z", "last_modified_time": "2023-11-13T21:13:29.853258Z", "date_published": null, "start_time": "2023-09-14T13:30:00Z", "end_time": "2023-09-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.</p><p>Esimerkiksi kyyhkyä on pidetty uskollisuuden ja romanttisen rakkauden symbolina sen pitkän parisiteen takia, minkä perusteella avioliittoa ja ydinperhettä on pidetty luonnollisina. Miksi vaikkapa lutkamaista rautiaista ei pidetä polyamorian symbolina tai kalalokkia lesbouden?</p><p>Queer-linturetkellä katsotaan ja kuunnellaan lähiluonnossa esiintyviä lintuja ja perehdytään siihen, miten läpikotaisesti yleiset käsitykset \"luonnollisesta\" ja katsomisen tavat ovat rakentuneet cis- ja heteronormien ympärille. Oppaana toimii Camille Auer.</p><p>Kurssi järjestetään yhteistyössä Helsingin työväenopiston, Baltic Circle -teatterifestivaalin ja Kanneltalon kanssa.</p><p>Linturetket ovat osa työväenopiston kurssitarjontaa ja niille ilmoittaudutaan osoitteessa https://www.ilmonet.fi. Ilmoittautuminen avautuu myöhemmin. Löydät kunkin retken seuraavien kurssitunnisteiden avulla:</p><p>H235444 Töölönlahti, ke 13.9. klo 7.30–10, kurssimaksu 14 €<br>H235445 Vanhankaupunginlahti, to 14.9. klo 16.30–19, kurssimaksu 14 €<br>H235446 Vanhankaupunginlahti, ke 20.9. klo 8–10.30, kurssimaksu 14 €<br>H235447 Mätäjoki, to 21.9. klo 15.30–18, kurssimaksu 14 €</p><p><b>Camille Auer</b> on monialainen taiteilija ja kirjoittaja. Tällä hetkellä hän tutkii lintujen tarkkailun fenomenologiaa sekä cis- ja heteronormien vaikutusta lintuja koskevan tiedon tuottamisessa. Hän näkee esimerkiksi liikkuvan kuvan, äänen ja esityksen keinoilla tapahtuvan toiminnan teoreettisen ajattelun muotoina siinä missä tekstinkin. Auerin tuotantoa yhdistää toiseuden ja toiseuttamisen tutkiminen suhteessa itseen posthumanistisesta trans- ja queer-näkökulmasta. Auerin työskentelyä tukee Suomen kulttuurirahasto.</p><p>Retki on osa Camille Auerin esityksen Ruff Knowledge taustatyötä. Ruff Knowledge esitetään 22., 24. ja 25. marraskuuta Kanneltalossa osana kansainvälisen Baltic Circle -teatterifestivaalin ohjelmistoa.</p>", "sv": "<p>Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.</p><p>Under Queer-fågelpromenaden tittar och lyssnar vi på fåglar i den närliggande naturen och sätter oss in i hur ingående allmänna uppfattningar av ”naturligt” och att se på saker har byggts upp kring cis- och heteronormer. Camille Auer är vår guide.</p><p>Kursen ordnas i samarbete med Helsingfors medborgarinstitut, teaterfestivalen Baltic Circle och Gamlasgården.</p><p>Camille Auer är en mångsidig konstnär och författare. För närvarande forskar hon i fågelskådningens fenomenologi samt cis- och heteronormernas inverkan på produktionen av information gällande fåglar. Utflykten är en del av bakgrundsarbetet till Auers föreställning Ruff Knowledge. Ruff Knowledge visas 22, 24 och 25 november i Gamlasgården som en del av programmet för den internationella teaterfestivalen Baltic Circle.</p><p>Registrering via https://www.ilmonet.fi:<br>H235444 Töölönlahti, Wed 13. Sept 7.30–10, 14 €<br>H235445 Vanhankaupunginlahti, Thu 14 Sept 16.30–19, 14 €<br>H235446 Vanhankaupunginlahti, Wed 20 Sept 8–10.30, 14 €<br>H235447 Mätäjoki, Thu 21 Sept 15.30–18, 14 €</p>", "en": "<p>People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values.</p><p>For example, the dove has been considered a symbol of loyalty and romantic love because of its long-lasting pair bonds, on the basis of which marriage and the nuclear family have been seen as natural. Why then haven’t people considered the slutty dunnock a symbol of polyamory, or the seagull of lesbianism? On the Queer Bird Walk, you will observe and listen to the birds in the nearby nature and get to know how the general concepts of “natural” and ways of looking are built around cis and hetero norms. Your guide on the trip is Camille Auer.</p><p>Registration via https://www.ilmonet.fi:<br>H235444 Tölöviken, ons. 13.9 kl. 7.30–10, kursavgift 14 euro<br>H235445 Gammelstadsviken, tors. 14.9 kl. 16.30–19, kursavgift 14 euro<br>H235446 Gammelstadsviken, ons. 20.9 kl. 8–10.30, kursavgift 14 euro<br>H235447 Rutiån, tors. 21.9 kl. 15.30–18, kursavgift 14 euro</p><p>Camille Auer is a trans-disciplinary artist and writer. Her art practice has always been theory driven, but instead of illustrating existing theories, she uses forms ranging from sound, moving image, performance and text-based installations to contribute to theoretical discourse as modes of thinking in their own right. A common theme in her diverse body of work is the othering of trans and nonhuman bodies, such as herself or queer birds. Her work has been shown and published in The Finnish Museum of Photography (Helsinki), Wäinö Aaltonen Museum (Turku) and Atlas Arts (Skye, Scotland) among others. Her work is currently supported by the Finnish Cultural Foundation.</p>" }, "name": { "fi": "Queer-lintukävelyt", "sv": "Queer-fågelpromenader", "en": "Queer Bird Walk" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/00D96BE0143BDBAA5A041945980FD44D/Queer-lintukavelyt", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/00D96BE0143BDBAA5A041945980FD44D/Queer-fagelpromenader", "en": "http://www.kanneltalo.fi/en/events/event/00D96BE0143BDBAA5A041945980FD44D/Queer_Bird_Walk" }, "provider": null, "short_description": { "fi": "Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.", "sv": "Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.", "en": "People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60408/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59962", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4201, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:41.885994Z", "last_modified_time": "2023-09-07T14:21:41.886014Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731846.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4201/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:41.740271Z", "last_modified_time": "2023-11-13T21:13:29.763232Z", "date_published": null, "start_time": "2023-09-14", "end_time": "2023-12-14", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan.</p><p>Taidejumpat <b>torstaisin 14.9.–14.12. klo 13–13.50</b> Kanneltalon galleriassa.</p><p>Syksyn aikana mm. vahvistetaan lihasvoimaa kuminauhaa apuna käyttäen, tanssahdellaan villasukat jalassa sekä tasapainoillaan ja venytellään livemusiikin säestämänä. Ota oma alusta mukaan ja anna taiteen liikuttaa.</p><p>Tunneille osallistuminen edellyttää alueliikuntapassin (30 €) ostamista. Lisätiedot: www.hel.fi/alueliikunta</p><p>HUOM! Taidejumppaa ei järjestetä to 19.10.</p><p>14.–28.9. keppijumppa <br>5.10. lihaskunto-tuolijumppa <br>12.10. taideliikuntaa<br>19.10. ei tuntia <br>26.10. taideliikuntaa<br>2.–9.11. lihaskunto-tuolijumppa <br>16.11. ulkoliikuntaa<br>23.11.–14.12 kehonhuolto-rentoutus</p><p>Yhteistyössä Kanneltalo ja Liikuntapalvelut</p>", "sv": "<p>Balansgympa, kroppsvård, sittgympa, djupstretch... Kom och njut av ledd motion med varierande teman i Gamlasgårdens galleri.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Konstgympa i Gamlasgårdens galleri <b>tors.14.9–14.12 kl. 13–13.50</b>. OBS! Konstgymnastik ordnas inte tors. 19.10.<br> <br>För att delta i passen behöver du köpa ett förortsmotionspass (30 euro). Mer information: www.hel.fi/alueliikunta</p><p>14–28.9 käppgymnastik <br>5.10 muskeltonus – stolgymnastik <br>12.10 konstgymnastik<br>19.10 inget pass <br>26.10 konstgymnastik<br>2–9.11 muskeltonus – stolgymnastik <br>16.11 utegymnastik<br>23.11–14.12 kroppsvård – avslappning</p>", "en": "<p>Balance exercises, body maintenance, chair exercises, deep stretching... Come and enjoy instructor-led physical activity with a changing theme at Kanneltalo Gallery</p><p>Bring your own exercise mat and let art get you moving!</p><p>Art workout sessions in Kanneltalo's gallery <b>on Thursdays 14 September – 14 December 13.00–13.50.</b></p><p>You need a regional exercise service pass (€30) to participate in the art workout sessions. Enquiries: https://liikunta.hel.fi/en/pages/support-for-physical-activity/regional-exercise-services</p><p>PLEASE NOTE! Art workout will not take place on Thu, 19 October.</p><p>14–28 September: broomstick exercise <br>5 October: strength training and chair workout <br>12 October: art workout<br>19 October: no class <br>26 October: art workout<br>2–9 November: strength training and chair workout <br>16 November: outdoor exercise<br>23 November–14 December: body maintenance and relaxation</p>" }, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten röra och beröra dig!", "en": "Art workouts" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5E78DAD1D35A0FFB1630FE7E7BEFD37E/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5E78DAD1D35A0FFB1630FE7E7BEFD37E/Konstgympa_lat_konsten_rora_och_berora_dig_", "en": "http://www.kanneltalo.fi/en/events/event/5E78DAD1D35A0FFB1630FE7E7BEFD37E/Art_workouts" }, "provider": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan.", "sv": "Balansgympa, kroppsvård, sittgympa, djupstretch... Kom och njut av ledd motion med varierande teman i Gamlasgårdens galleri.", "en": "Balance exercises, body maintenance, chair exercises, deep stretching... Come and enjoy instructor-led physical activity with a changing theme at Kanneltalo Gallery" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59962/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60348", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4200, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:41.524914Z", "last_modified_time": "2023-09-07T14:21:41.524936Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734055.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4200/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:41.386968Z", "last_modified_time": "2023-11-13T21:13:29.685295Z", "date_published": null, "start_time": "2023-09-14T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p><b>Ryhmä 1 klo 9.15, ryhmä 2 klo 10.30</b></p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min<br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.fi</p>", "sv": "<p>Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.</p><p><b>Obs. Två grupper: gruppen 1 kl. 9.15 och gruppen 2 kl. 10.15 </b></p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av de djur man möter i skogen. Jussis trogna utflyktsgitarren är med.</p><p>Lämpar sig för barn som fyllt 3 år eller som orkar gå en liten skogspromenad. <br>Fri entré <br>Åldersrekommendation: 3–7 år <br>Längd: ca 45 min <br>Språk: finska <br>Passar dagisgrupper och familjer <br>Obligatorisk förhandsregistrering för dagisgrupper www.kultus.fi <br>Utflykten arrangeras i Nybondas klippskog. Avgång från parkeringsområdet mellan café Kampela och Nybondas skog.</p>", "en": "<p>We take a trip to the forest with Jussi Ollila to find the most magical stories.</p><p><b>Notice: two groups, group on at 9.15 AM and group 2 at 10.15 AM</b></p><p>The stories are improvised based on children’s ideas and inspired by the life we encounter in the woods. The faithful campground guitar will accompany our travels.</p><p>The event is suitable for children over 3, or children who will be able to walk for a short stroll in the woods. <br>Age recommendation: 3- to 7-year-olds <br>Duration: approx. 45 min. <br>Language: Finnish <br>Location: Uutela’s forest on rocky terrain. Departure from the parking area between the café Kampela and Uutela forest. <br>Suits families and daycare groups. <br>Daycare groups’ preregistration www.kultus.fi</p>" }, "name": { "fi": "Jussin metsäsatutuokiot", "sv": "Jussis skogssagor", "en": "Jussi’s Forest Fairy Tales" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2F2BB80E754784A65F0BC4972973BACF/Jussin_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2F2BB80E754784A65F0BC4972973BACF/Jussis_skogssagor_", "en": "http://www.vuotalo.fi/en/events/event/2F2BB80E754784A65F0BC4972973BACF/Jussi_s_Forest_Fairy_Tales_" }, "provider": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.", "en": "We take a trip to the forest with Jussi Ollila to find the most magical stories." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60348/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60467", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4199, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:41.167519Z", "last_modified_time": "2023-09-07T14:21:41.167550Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725254.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4199/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:40.566752Z", "last_modified_time": "2023-11-13T21:13:29.587645Z", "date_published": null, "start_time": "2023-09-14T07:00:00Z", "end_time": "2023-09-14T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/910B9CB8ADE0202FECCBC20B59A1720F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/910B9CB8ADE0202FECCBC20B59A1720F/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/910B9CB8ADE0202FECCBC20B59A1720F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider": null, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60347", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4198, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:39.927841Z", "last_modified_time": "2023-09-07T14:21:39.927862Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734054.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4198/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:39.361482Z", "last_modified_time": "2023-11-13T21:13:29.490518Z", "date_published": null, "start_time": "2023-09-14T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p><b>Ryhmä 1 klo 9.15, ryhmä 2 klo 10.30</b></p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min<br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.fi</p>", "sv": "<p>Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.</p><p><b>Obs. Två grupper: gruppen 1 kl. 9.15 och gruppen 2 kl. 10.15 </b></p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av de djur man möter i skogen. Jussis trogna utflyktsgitarren är med.</p><p>Lämpar sig för barn som fyllt 3 år eller som orkar gå en liten skogspromenad. <br>Fri entré <br>Åldersrekommendation: 3–7 år <br>Längd: ca 45 min <br>Språk: finska <br>Passar dagisgrupper och familjer <br>Obligatorisk förhandsregistrering för dagisgrupper www.kultus.fi <br>Utflykten arrangeras i Nybondas klippskog. Avgång från parkeringsområdet mellan café Kampela och Nybondas skog.</p>", "en": "<p>We take a trip to the forest with Jussi Ollila to find the most magical stories.</p><p><b>Notice: two groups, group on at 9.15 AM and group 2 at 10.15 AM</b></p><p>The stories are improvised based on children’s ideas and inspired by the life we encounter in the woods. The faithful campground guitar will accompany our travels.</p><p>The event is suitable for children over 3, or children who will be able to walk for a short stroll in the woods. <br>Age recommendation: 3- to 7-year-olds <br>Duration: approx. 45 min. <br>Language: Finnish <br>Location: Uutela’s forest on rocky terrain. Departure from the parking area between the café Kampela and Uutela forest. <br>Suits families and daycare groups. <br>Daycare groups’ preregistration www.kultus.fi</p>" }, "name": { "fi": "Jussin metsäsatutuokiot", "sv": "Jussis skogssagor", "en": "Jussi’s Forest Fairy Tales" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6532A416440C1AB6DBAB4755DB088137/Jussin_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6532A416440C1AB6DBAB4755DB088137/Jussis_skogssagor_", "en": "http://www.vuotalo.fi/en/events/event/6532A416440C1AB6DBAB4755DB088137/Jussi_s_Forest_Fairy_Tales_" }, "provider": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.", "en": "We take a trip to the forest with Jussi Ollila to find the most magical stories." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60347/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268722", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4876, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-21T14:41:02.063966Z", "last_modified_time": "2023-09-21T14:41:02.063986Z", "name": "", "url": "https://www.helmet.fi/download/noname/{1D2DF3B1-95AF-4661-93DE-AE08F5E8E7D1}/106096", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4876/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-21T13:45:06.850584Z", "last_modified_time": "2023-11-13T17:20:52.292221Z", "date_published": "2023-09-21T11:58:00Z", "start_time": "2023-10-13T05:00:00Z", "end_time": "2023-10-13T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "1st floor info", "en": "1st floor info" }, "description": { "fi": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>", "en": "<p>Welcome to Adventures in White Privilege;</p><p>50 minutes in the lives of 3 foreigners in Helsinki.</p><p>Created by Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p><p>A site-specific audiopiece that begins in Oodi central library, and takes the listener on a narrated, comical, musical wander around the railway station and surroundings, and finishes back in Oodi.</p><p>The listener first collects a map entitled \"Adventures in White Privilege\" from the brochure stand next to the info desk on the first floor of Oodi Central Library. The map includes a QR code that can be scanned with a smartphone, which will open a link where the audiopiece can be either streamed or downloaded. The listener can then hear the track through headphones and follow the directions of the audio and the map.</p><p>For potential listeners who require the loan of headphones and/or mp3 player to access the piece, there will be a small number available on request at the info desk.</p><p>The piece is free of charge and will be launched at 15.00 on 24.09.23 and will be available at any time during Oodi's opening hours until 24.10.23.</p><p>The piece is in English, though transcripts in Finnish will be available soon.</p><p>Detailed arranger: Alexia Andrei, Marjorie H Morgan and Rosie Swayne</p>" }, "name": { "fi": "Adventures in White Privilege", "en": "Adventures in White Privilege" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki.", "en": "Welcome to Adventures in White Privilege; 50 minutes in the lives of 3 foreigners in Helsinki." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268722/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268505", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2583, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:56.358060Z", "last_modified_time": "2024-02-06T13:38:20.061617Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7B97672D-46A1-46F8-BC66-7CF2AAEA2D3C}/92303", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-20T09:47:49.571679Z", "last_modified_time": "2023-11-13T16:20:56.476894Z", "date_published": "2023-01-11T13:49:00Z", "start_time": "2023-10-13T15:00:00Z", "end_time": "2023-10-13T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "description": { "fi": "<h3>Perjantaisin klo 18</h3><p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Sellon kirjaston Jaminurkassa järjestetään joka perjantai klo 18:00 avoin elokuvanäytös lapsille, perheille ja lapsenmielisille. Elokuvat valitaan yhdessä lasten toiveista kirjastossa.</p><p>Elokuvat ovat kaikki ikäsuositukseltaan S tai K7. Esityskielenä on suomi. Tekstitys valitaan lasten toiveiden mukaan. </p>", "sv": "<h3>Fredagar kl. 18</h3><p>Välkommen med på filmfredag! I Sellobibliotekets Jaminurkka ordnas det varje fredagkväll kl. 18.00 en filmvisning för barn och familjer. Vi väljer filmerna utifrån barnens önskemål. Kom och berätta ditt önskemål till bibliotekets personal och bekanta dig med schemat för filmvisningarna på barnavdelningen i Sellobiblioteket.</p><p>Filmerna har rekommendationsålder T (tillåten för alla åldrar) eller 7 (tillåten för barn över 7 år). Språket för föreställningen är finska. Språket för textningen väljs enligt barnens önskemål.</p>", "en": "<h3>Fridays at 6 pm.</h3><p>Welcome to spend your time together with a friday movie at Sello Library! The movies take place in Jaminurkka at Sello Library every friday at 18:00 for children, families and for the child-minded people. The films are chosen by children from their wishes. </p><p>All films are recommended of age S and K7. The presentation language is Finnish. The texts are chosen by the children from their request. </p>" }, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn i Sello bibliotek", "en": "Friday movie for children" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Tule nauttimaan perjantaileffasta!", "sv": "Välkommen med på filmfredag!", "en": "Welcome to spend your time together with a friday movie at Sello Library!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261097", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2582, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:56.013746Z", "last_modified_time": "2024-02-06T13:38:19.975977Z", "name": "", "url": "https://www.helmet.fi/download/noname/{01BC4216-05F3-473B-9AFD-A97E7DF6C732}/95619", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2582/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:46:26.191876Z", "last_modified_time": "2023-11-13T16:20:56.374412Z", "date_published": "2023-06-09T07:01:00Z", "start_time": "2023-10-13T14:00:00Z", "end_time": "2023-10-13T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Nuortentila" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelitkoneet eivät ole käytössä.</p><p>Ikäsuositukseltaan S elokuvia katsotaan varmasti seuraavina päivinä:</p><ul> <li>1.9.2023</li> <li>6.10.2023</li> <li>3.11.2023</li> <li>1.12.2023</li> </ul></p><ul> <li></li> </ul>" }, "name": { "fi": "Lasten perjantaileffa" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261097/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266659", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3594, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-24T13:28:15.875059Z", "last_modified_time": "2024-02-06T13:38:39.119115Z", "name": "", "url": "https://www.helmet.fi/download/noname/{0DE6F617-E889-478A-9A3F-EE78A985E88E}/100585", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3594/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-25T07:50:14.684269Z", "last_modified_time": "2023-11-13T14:21:21.155699Z", "date_published": "2023-02-15T22:00:00Z", "start_time": "2023-10-13T14:00:00Z", "end_time": "2023-10-13T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone", "en": "Sininen huone" }, "description": { "fi": "<p> <strong>What is theater?</strong> </p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p> <strong>Your child will learn:</strong> </p><ul> <li>speak in front of the public</li> <li>speak clearly and correctly</li> <li>not to be afraid of the stage</li> <li>express your thoughts out loud</li> <li>to be able to concentrate, show and manage emotions</li> <li>«use your head» for its intended purpose</li> <li>be active and gambling</li> <li>skillfully owns his body</li> </ul></p><p> <strong>The theater opens for children </strong> <strong>8</strong> <strong>-16 y.o. every Friday 17.00-18.30. 20.10. & 10.11. are canceled.</strong> </p><p> <strong>Entresse library, Blue Room</strong> </p><p>You can sign up for the studio and get information about the training program by e-mail <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> and mob. +358413179903</p><p>________________________________________________________________________</p><p> <strong>Перший український дитячий театр Фінляндії «МАСКИ» / </strong> </p><p> <strong>Suomen ukrainalainen lastenteatteri ”NAAMIOT”</strong> </p><p> <strong>Що таке театр?</strong> </p><ul> <li>місце гри та спілкування</li> <li>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</li> <li>тут можна пробувати, вигадувати, показувати, експериментувати</li> <li>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</li> </ul><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p> <strong>Ваша дитина навчиться:</strong> </p><ul> <li>виступати перед публікою</li> <li>чітко та правильно говорити</li> <li>не боятися сцени</li> <li>висловлювати свої думки вголос</li> <li>вміти концентруватися, проявляти та керувати емоціями</li> <li>«користуватися головою» за призначенням</li> <li>бути активною та азартною</li> <li>володіти своїм тілом</li> </ul></p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> або за тел. +358413179903</p>", "en": "<p> <strong>What is theater?</strong> </p><p>A place for play and communication. There are no diaries where for each subject you get an assessment, because everyone is Excellent in the game. Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage.</p><p>So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!</p><p> <strong>Your child will learn:</strong> </p><ul> <li>speak in front of the public</li> <li>speak clearly and correctly</li> <li>not to be afraid of the stage</li> <li>express your thoughts out loud</li> <li>to be able to concentrate, show and manage emotions</li> <li>«use your head» for its intended purpose</li> <li>be active and gambling</li> <li>skillfully owns his body</li> </ul></p><p> <strong>The theater opens for children </strong> <strong>8</strong> <strong>-16 y.o. every Friday 17.00-18.30. 20.10. & 10.11. are canceled.</strong> </p><p> <strong>Entresse library, Blue Room</strong> </p><p>You can sign up for the studio and get information about the training program by e-mail <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> and mob. +358413179903</p><p>________________________________________________________________________</p><p> <strong>Перший український дитячий театр Фінляндії «МАСКИ» / </strong> </p><p> <strong>Suomen ukrainalainen lastenteatteri ”NAAMIOT”</strong> </p><p> <strong>Що таке театр?</strong> </p><ul> <li>місце гри та спілкування</li> <li>тут немає щоденників, де за кожен предмет отримуєш оцінку, бо в грі кожен відмінник</li> <li>тут можна пробувати, вигадувати, показувати, експериментувати</li> <li>ми будемо лише підтримувати свободу самовираження та спонукати до сміливості.</li> </ul><p>То ж, якщо ваша дитина мріє виступати на сцені, а ви хочете бачити її захопленою і з палаючими очима - приводьте її до нас!</p><p> <strong>Ваша дитина навчиться:</strong> </p><ul> <li>виступати перед публікою</li> <li>чітко та правильно говорити</li> <li>не боятися сцени</li> <li>висловлювати свої думки вголос</li> <li>вміти концентруватися, проявляти та керувати емоціями</li> <li>«користуватися головою» за призначенням</li> <li>бути активною та азартною</li> <li>володіти своїм тілом</li> </ul></p><p>Театральна студія запрошує дітей віком від 8 до 16 років.</p><p>Заняття відбуваються щоп’ятниці 17.00-18.30</p><p>Бібліотека Entresse, Blue Room</p><p>Записатися до студії та отримати інформацію про програму занять ви можете за електронною поштою <a href=\"mailto:suomenukrlastteatteri@gmail.com\">suomenukrlastteatteri@gmail.com</a> або за тел. +358413179903</p>" }, "name": { "fi": "Ukrainalainen lasten teatterikerho Naamiot", "en": "Ukrainian Children's Theater Club Masks" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage. So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!", "en": "Here you can try, fantasize, show, experiment. We will only support freedom self-expression and prompting courage. So, if your child dreams to perform on stage, and you want to see him enthusiastic and with shining eyes - bring them to us!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266659/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269233", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11686/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3778, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T12:24:43.266824Z", "last_modified_time": "2024-02-06T13:38:19.803811Z", "name": "", "url": "https://www.helmet.fi/download/noname/{36B53B87-1AAF-44C8-9D49-5D82E8F05EE9}/92038", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3778/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-06T09:32:40.704924Z", "last_modified_time": "2023-11-13T14:21:21.061786Z", "date_published": "2022-03-04T10:00:00Z", "start_time": "2023-10-13T14:00:00Z", "end_time": "2023-10-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Heikki" }, "description": { "fi": "<h3>Perjantaisin Tapiolan kirjaston tapahtumatila Heikissä klo 17.00-18.00</h3><p>Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille. Voit osallistua jameihin kaikilla soittimilla. Tilasta löytyy piano. Tule mukaan jameihin soittamaan omia lempikappaleita tai vaikka vain nauttimaan yhdessä musisoinnista. </p><p>#ukulele #musiikki #jami #jamit #trumpetti</p>" }, "name": { "fi": "Ukulelejamit" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Ukulelejamit järjestetään perjantaisin Tapiolan kirjaston tapahtumatila Heikissä. Jamit ovat avoimia kaikille. Voit osallistua jameihin kaikilla soittimilla." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269233/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268363", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4836, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-19T14:38:20.730121Z", "last_modified_time": "2024-02-06T13:39:00.542384Z", "name": "", "url": "https://www.helmet.fi/download/noname/{B0914AE5-6D68-4507-8535-81CF68CAAD72}/105903", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-19T14:49:23.432825Z", "last_modified_time": "2023-11-13T14:21:20.961352Z", "date_published": "2023-09-19T13:38:00Z", "start_time": "2023-10-13T13:30:00Z", "end_time": "2023-10-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Oppimistila 3, 2 krs" }, "description": { "fi": "<p>Osaatko puhua espanjaa? Haluatko harjoitella taitojasi ryhmässä syntyperäisen kielioppaan kanssa?</p><p>¿Hablas español?¿Quieres practicar tu español en grupo y asesorado por un hablante nativo?</p><p>Tervetuloa espanjan kielikahvilaan perjantaisin klo 16.30-18.00, alkaen 22.9.! ¡Bienvenido al café en español los viernes de 16.30- a18.00, empieza 22.9.!</p><p>Lisätietoja ja ilmoittautuminen: Más información e inscripciones: Lili Carrion, licarpe@hotmail.com</p><p> <br> Photo: Sandra Camacho</p>" }, "name": { "fi": "Espanjan kielikahvila" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Espanjan kielikahvila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268363/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267313", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T13:24:26.783096Z", "last_modified_time": "2023-08-30T13:24:26.783120Z", "name": "", "url": "https://www.helmet.fi/download/noname/{E3D2DE50-690E-4090-BFB6-C53C68C256D9}/105396", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-30T13:35:30.704465Z", "last_modified_time": "2023-11-13T13:21:02.833745Z", "date_published": "2023-08-30T12:43:00Z", "start_time": "2023-10-13T13:00:00Z", "end_time": "2023-10-13T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aalto tai Kari" }, "description": { "fi": "<h3> <br> Perjantaisin klo 16</h3><p> <strong>Oletko suomen kielen oppija ja haluat harjoitella puhumista?</strong> </p><p> <strong>Haluatko harjoitella suomea hauskassa ja rennossa ympäristössä? </strong> </p><p>Tule mukaan ”Luetaan yhdessä” klubiin.</p><p>Luemme ja keskustelemme selko kirjoista ja selko uutisista</p><p>Perjantaisin klo 16.00 – 17.30</p><p>Huone: Aalto tai Kari</p><p>Iso Omenan kirjasto</p>" }, "name": { "fi": "Luetaan yhdessä klubi" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Oletko suomen kielen oppija ja haluat harjoitella puhumista? Haluatko harjoitella suomea hauskassa ja rennossa ympäristössä?" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267313/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266802", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8223/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3715, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-25T12:06:10.766914Z", "last_modified_time": "2023-08-25T12:06:10.766945Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7F28E549-82D6-4635-BB40-43958ECD1E71}/105219", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3715/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-25T12:27:22.279122Z", "last_modified_time": "2023-11-13T13:21:02.728588Z", "date_published": "2022-03-23T13:21:00Z", "start_time": "2023-10-13T13:30:00Z", "end_time": "2023-10-13T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "lastenosasto", "en": "Children’s Section" }, "description": { "fi": "<p>Tervetuloa viettämään rentoa perjantai-iltapäivää, tapaamaan muita ja pitämään hauskaa turvallisessa tilassa. Ohjelmassa on mm. tarina-, musiikki- ja tanssituokioita. Täällä voit löytää uusia ystäviä ja saada vertaistukea. <br><br>Kohderyhmä: espanjankielisten perheiden vanhemmat ja yli 2-vuotiaat lapset<br>Aika: perjantaisin 25.8.-27.10.2023 klo 16.30-17.30 <br>Paikka: Pasilan kirjaston lastenosasto<br>Järjestäjä: <a href=\"https://ninho.fi/\">Kulttuurikeskus Ninho ry</a></p><a href=\"https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Pasilan_kirjasto\">Pasilan kirjasto</a><br> <p>Te damos la bienvenida a estos encuentros para familias y bebés hablantes de español. En PICNIC podrás conocer otras familias, hacer nuevas amistades, jugar, cantar, aprender juntos y disfrutar de un encuentro seguro alrededor de la colección de literatura infantil en español de Helmet.</p><p>Les esperamos todos los viernes, a partir del 25 de agosto, de 4.30 a 5.30 pm, en la sala verde de la sección infantil de la Biblioteca de Pasila.</p><p>Sean bienvenidas todas las familias. PICNIC lo hacemos entre todos, así que anímate y ¡trae algo para compartir!</p><p>PICNIC es una coproducción entre la comunidad de familias hispanohablantes y las profesionales de Kulttuurikeskus Ninho ry.</p><p>Las sesiones de PICNIC son gratuitas, y están pensadas para peques caminadores, mayores de 2 años.</p><p>Si necesitas más información, puedes escribirnos a <a href=\"mailto:info@ninho.fi\">info@ninho.fi</a>.</p>", "en": "<p>We welcome you to these meetings for Spanish-speaking families and toddlers. At PICNIC you can meet other families, make new friends, play, sing, learn together, and enjoy a safe gathering around Helmet's collection of children's literature in Spanish.</p><p>We look forward to seeing you every Friday, from 25 August, from 4.30 to 5.30 pm, in the green room of the children's section of the Pasila Library.</p><p>All families are welcome. PICNIC is made by all of us, so come along and bring something to share!</p><p>PICNIC is a co-production between the community of Spanish-speaking families and the professionals of Kulttuurikeskus Ninho ry.</p><p>The PICNIC sessions are free of charge, and are designed for little walkers, 2 years and older.</p><p>If you need more information, you can write to us at info@ninho.fi</p><p>Remember to share with your friends, we are waiting for you!</p><p>Organizer: <a href=\"https://ninho.fi/\">Kulttuurikeskus Ninho ry </a><br><br><a href=\"https://www.helmet.fi/en-US/Libraries_and_services/Pasila_Library\">Pasila Library</a><br><br> Te damos la bienvenida a estos encuentros para familias y bebés hablantes de español. En PICNIC podrás conocer otras familias, hacer nuevas amistades, jugar, cantar, aprender juntos y disfrutar de un encuentro seguro alrededor de la colección de literatura infantil en español de Helmet.</p><p>Les esperamos todos los viernes, a partir del 25 de agosto, de 4.30 a 5.30 pm, en la sala verde de la sección infantil de la Biblioteca de Pasila.</p><p>Sean bienvenidas todas las familias. PICNIC lo hacemos entre todos, así que anímate y ¡trae algo para compartir!</p><p>PICNIC es una coproducción entre la comunidad de familias hispanohablantes y las profesionales de Kulttuurikeskus Ninho ry.</p><p>Las sesiones de PICNIC son gratuitas, y están pensadas para peques caminadores, mayores de 2 años.</p><p>Si necesitas más información, puedes escribirnos a <a href=\"mailto:info@ninho.fi\">info@ninho.fi</a>.</p>" }, "name": { "fi": "PICNIC espanjankielisille vanhemmille ja taaperoille", "en": "PICNIC for Spanish speaking families with toddlers" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Tervetuloa!", "en": "Welcome!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266802/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266217", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3520, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-22T11:24:15.476482Z", "last_modified_time": "2024-02-06T13:38:38.862220Z", "name": "", "url": "https://www.helmet.fi/download/noname/{F52E09C0-3225-4653-B21C-0EF85EB042B3}/101025", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" } ], "created_time": "2023-08-22T11:33:01.741026Z", "last_modified_time": "2023-11-13T13:21:02.629976Z", "date_published": "2023-03-06T14:33:00Z", "start_time": "2023-10-13T12:30:00Z", "end_time": "2023-10-13T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Oppimistila 1, 2.krs" }, "description": { "fi": "<p>Tervetuloa mukaan avoimeen eSports harrastusryhmään hiomaan pelinsisäistä ja -ulkoista tietotaitoa sekä tutustumaan uusiin mukaviin joukkue- ja pelitovereihin. Harrastekertoihin sisältyy harjoittelua niin yksilö- kuin joukkuepelaamisessa mm. Fortnitessa. Aiempaa pelikokemusta ei vaadita. Ryhmästä voi varata itselleen paikan ilmoittautumalla tai otamme pelureita vastaan ovella ilman ennakkoilmoittautumista, mikäli ryhmässä on vapaita paikkoja.</p><p> <b>aika:</b> Perjantaisin klo 15:30-17:00 8.9.2023 alkaen.Toimintaa ei järjestetä koulujen lomaviikoilla.<br><b>paikka:</b> Oodin 2. kerros, Oppimistila 1<br><br> Järjestäjä: XRoc Gaming / Harrastamisen Suomen malli </p><p>Ilmoittautuminen: <a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.xroc.gg%2Fkoulut%2F&data=05%7C01%7Csanna.m.huttunen%40hel.fi%7Cc3c444592b8e420f7adb08db9d5ab109%7C3feb6bc1d7224726966c5b58b64df752%7C1%7C0%7C638276785060090778%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=tZ5cyCHnj1bgvHumiwtdyNdxYQw4VYPt%2BCcm%2FCyJlIQ%3D&reserved=0\">https://www.xroc.gg/koulut/</a></p>" }, "name": { "fi": "Avoin eSports -kerho (6.-9.lk)" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Avoin eSports -kerho (6.-9.lk)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266217/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:269128", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8288/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4993, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-10-03T12:38:03.895951Z", "last_modified_time": "2023-10-03T12:38:03.895982Z", "name": "", "url": "https://www.helmet.fi/download/noname/{D12EFBF5-A0F4-4D9A-B74A-7AE8AB38EBBF}/106408", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4993/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-10-03T12:42:35.756788Z", "last_modified_time": "2023-11-13T12:21:19.815970Z", "date_published": "2023-10-03T11:42:48.543000Z", "start_time": "2023-10-13T06:00:00Z", "end_time": "2023-10-13T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "description": { "fi": "<p>Kirjastossa käydessäsi pysähdy hetkeksi ihailemaan Tea Dickmanin teosta Evoluutio, joka on moniosainen akryylimaalaus eli polyptyykki.</p><p>Esillä on myös muita Dickmanin teoksia.</p><p>Teokset ovat nähtävissä kirjaston aukioloaikoina 1.10.-30.10.</p><p> <em>Kuva: Emma Grönqvist</em> </p>" }, "name": { "fi": "Tea Dickmanin Evoluutio-näyttely" }, "provider_contact_info": null, "info_url": null, "provider": null, "short_description": { "fi": "Tutustu Tea Dickmanin taidenäyttelyyn!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:269128/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26236, "next": "