Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=201
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=202", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=200" }, "data": [ { "id": "kulke:63904", "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: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: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: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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151306, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-27T17:12:45.469447Z", "last_modified_time": "2024-05-27T17:12:45.469461Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744063.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151306/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-27T17:12:45.437399Z", "last_modified_time": "2024-05-27T17:12:45.552386Z", "date_published": null, "start_time": "2024-05-29T15: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, "short_description": { "fi": "Viimeinen startti on tähtiä täynnä elokuva, jossa vauhtia ja kovia kierroksia riittää halki Ruotsin. Suomenkielinen tekstitys.", "sv": "Den stjärnspäckade komedin ETT SISTA RACE tar oss med fart, fläkt och höga varvtal genom Sverige.", "en": "A street racing legend Dennis who neglected his marriage and 16 year old daughter Hanna. One day he finds out that his daughter will participate in a race with her new boyfriend. To stop Hanna, Dennis and his ex-wife Tove go on a trip." }, "description": { "fi": "<p>Viimeinen startti on tähtiä täynnä elokuva, jossa vauhtia ja kovia kierroksia riittää halki Ruotsin. Suomenkielinen tekstitys.</p><p>Koko elämänsä lain väärällä puolella elänyt Street racing -legenda Dennis on päättänyt aloittaa vastuullisen ja rauhallisen elämän. Suunnitelmat keskeytyvät pian Dennisin saadessa tietää, että hänen tyttärensä Hanna aikoo osallistua ajokilpailuun uuden poikaystävänsä Charlien kanssa. Pysäyttääkseen Hannan Dennis ja hänen ex-vaimonsa Tove starttaavat takaa-ajoon saadakseen tyttärensä kotiin. Siitä alkaa henkeäsalpaava kisa,</p><p>Ohjaaja on Edward af Sillén ja päärooleissa nähdään David Hellenius, Malin Åkerman, Jonas Karlsson, Johan Glans, Peter Dalle, Johan Ulveson, Ola Forssmed, Elsa Öhrn, Malte Gardinger sekä Sara Soulié. Kesto on 115 min. ja ääniraita on ruotsiksi ja tekstitys suomeksi. Ikäraja on K7 ja pääsy on vapaa.<br>Järjestäjänä Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Den stjärnspäckade komedin ETT SISTA RACE tar oss med fart, fläkt och höga varvtal genom Sverige.</p><p>Filmen berättar historien om streetracing-legenden Dennis, som levt hela sitt liv på fel sida om lagen. Han har nu bestämt sig för att börja leva det ansvarsfulla och stilla livet. Något som snart bryts upp när Dennis får reda på att hans dotter Hanna ska delta i ett race med sin nya kille Charlie. För att stoppa Hanna beger sig Dennis och hans ex-fru Tove ut på en resa för att hämta hem dottern. Det är början på ett hisnande sista race.</p><p>För regin står Edward af Sillén och i huvudrollerna ser vi David Hellenius, Malin Åkerman, Jonas Karlsson, Johan Glans, Peter Dalle, Johan Ulveson, Ola Forssmed, Elsa Öhrn, Malte Gardinger och finlandssvenska Sara Soulié. Filmen är 115 min. lång med svenskt tal och finsk text. Åldersgränsen är 7 och inträdet är fritt.<br>Arrangör är Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p>", "en": "<p>A street racing legend Dennis who neglected his marriage and 16 year old daughter Hanna. One day he finds out that his daughter will participate in a race with her new boyfriend. To stop Hanna, Dennis and his ex-wife Tove go on a trip.</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Ett sista race (Viimeinen startti) – Onsdagsbio", "sv": "Ett sista race – Onsdagsbio", "en": "Ett sista race – Onsdagsbio" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race_Viimeinen_startti_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race", "en": "http://www.vuotalo.fi/en/events/event/093A8F3B33859A9F580E13F17A94DB90/Ett_sista_race" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63904/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh3535hl4", "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/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535gv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535g3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535g5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535ham/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535hc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535hfe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535hhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535hjq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-05-27T10:29:46.014807Z", "last_modified_time": "2024-05-27T10:29:46.014833Z", "date_published": "2024-05-28T10:15:00Z", "start_time": "2024-06-04T12:00:00Z", "end_time": "2024-08-06T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa perhepajaan oppimaan virkkausta ja ompelua sekä tutustumaan kirjaston tarjoamiin välineisiin", "sv": "Välkommen till en familjeworkshop för att lära dig virka och sy och utforska de verktyg som biblioteket har att erbjuda", "en": "Welcome to Workshop for learning crochet, sewing, and to know about our library free offers" }, "description": { "fi": "<p>Tervetuloa perhepajaan askartelemaan ja oppimaan ompelemista sekä tutustumaan kirjaston tarjoamiin välineisiin kuten saumuri, vinyylileikkuri ja 3D-tulostin.</p><p>Paja on ilmainen. Puhumme suomea, arabia ja englantia. Voit ottaa myös lapsesi mukaan. </p>", "sv": "<p>Välkommen till våra familjeverkstäder för pyssla och lära dig sy, samt bekanta dig med de redskap som biblioteket har att erbjuda, såsom symaskin, vinylskärare och 3D-skrivare.</p><p>Workshopen är kostnadsfri. Vi talar finska, arabiska och engelska. Det kostar ingenting att delta. Du kan också ta med dig ditt barn. </p>", "en": "<p>Welcome to our family workshops where you can make crafts, learn to sew, and to learn about our appliences for example sewing machine, vinyl cutter, and 3D-printers. The workshop language is in Finnish, English and Arabic, and is free of charge. Children are welcome to join together with their parents. </p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "name": { "fi": "Perhepaja", "sv": "Workshop för familjer", "en": "Workshop for Families" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3535hl4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh3swyzmm", "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/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-21T09:26:21.933112Z", "last_modified_time": "2024-05-27T08:13:30.478259Z", "date_published": "2024-05-21T09:25:00Z", "start_time": "2024-06-06T14:30:00Z", "end_time": "2024-06-06T16: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, "short_description": { "fi": "Tervetuloa juhlistamaan Pride-kuukautta sateenkaarevan kirjavinkkauksen merkeissä Sellon kirjastoon!", "sv": "Välkommen att göra Pride-månaden festlig genom regnbågsbokprat! ", "en": "We invite you to celebrate Pride month with LGBTQIA+ reading tips!" }, "description": { "fi": "<p>Tervetuloa juhlistamaan Pride-kuukautta sateenkaarevan kirjavinkkauksen merkeissä Sello kirjastoon! Kirjaston henkilökunta vinkkaa aihepiiriin sopivaa kauno- ja tietokirjallisuutta aikuisille. Tapahtuma on suomeksi, mutta vinkkaamme suomen-, ruotsin- ja englanninkielistä aineistoa.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>", "sv": "<p>Välkommen att göra Pride-månaden festlig genom regnbågsbokprat! Bibliotekets personal bokpratar om för temat lämplig skön- och facklitteratur åt vuxna. Evenemanget är på finska, men vi bokpratar om material som är på finska, svenska och engelska.</p><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.</p>", "en": "<p>We invite you to celebrate Pride month with LGBTQIA+ reading tips! Library staff will be giving out tips for fiction and non-fiction for adults. The event is in finnish, but we will be giving tips for finnish, swedish and english books.</p><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "name": { "fi": "Sateenkaarikirjavinkkaus", "sv": "Regnbågsbokprat", "en": "LGBTQIA+ reading tips" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3swyzmm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghzvldgk4", "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/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-21T09:25:22.382819Z", "last_modified_time": "2024-05-27T08:13:00.688077Z", "date_published": "2024-05-21T09:18:00Z", "start_time": "2024-06-11T14:30:00Z", "end_time": "2024-06-11T16: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, "short_description": { "fi": "Tervetuloa juhlistamaan Pride-kuukautta sateenkaarevan kirjavinkkauksen merkeissä Tapiolan kirjastoon!", "sv": "Välkommen att göra Pride-månaden festlig genom regnbågsbokprat!", "en": "We invite you to celebrate Pride month with LGBTQIA+ reading tips! " }, "description": { "fi": "<p>Tervetuloa juhlistamaan Pride-kuukautta sateenkaarevan kirjavinkkauksen merkeissä Tapiolan kirjastoon! Kirjaston henkilökunta vinkkaa aihepiiriin sopivaa kauno- ja tietokirjallisuutta aikuisille. Tapahtuma on suomeksi, mutta vinkkaamme suomen-, ruotsin- ja englanninkielistä aineistoa.</p><p>Espoon kaupunki on Helsinki Priden Working With Pride -kumppani 2024.</p>", "sv": "<p>Välkommen att göra Pride-månaden festlig genom regnbågsbokprat! Bibliotekets personal bokpratar om för temat lämplig skön- och facklitteratur åt vuxna. Evenemanget är på finska, men vi bokpratar om material som är på finska, svenska och engelska.</p><p>Esbo stad är Working with Pride-partner med Helsinki Pride 2024.</p>", "en": "<p>We invite you to celebrate Pride month with LGBTQIA+ reading tips! Library staff will be giving out tips for fiction and non-fiction for adults. The event is in finnish, but we will be giving tips for finnish, swedish and english books.</p><p>The City of Espoo is Helsinki Pride’s Working with Pride partner in 2024.</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Kaija", "en": "Kaija" }, "name": { "fi": "Sateenkaarikirjavinkkaus", "sv": "Regnbågsbokprat", "en": "LGBTQIA+ reading tips" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzvldgk4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh3sjcxh4", "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/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-27T07:29:49.367483Z", "last_modified_time": "2024-05-27T08:00:07.147460Z", "date_published": null, "start_time": "2024-06-06T09:00:00Z", "end_time": "2024-06-06T12: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, "short_description": { "fi": "Rekrytointitapahtuma Sellon kirjastossa", "sv": "Rekryteringevenemang i Sellobiblioteket", "en": "Recruitment event in Sello Library" }, "description": { "fi": "<p>Tässä rekrytointitapahtumassa SPR Kontti etsii työntekijöitä uuteen myymälään. </p><p>Tilaisuus alkaa klo 12 yritysesittelyllä. Esittelyn jälkeen mahdollisuus pikahaastatteluun, joten ota mukaan CV:si.</p><p>SPR Kontti avaa uuden Kontti-myymälän Leppävaaran Galleriaan elokuussa 2024. Uuteen avattavaan myymälään tarvitaan noin 30 henkilöä erilaisiin tavarankäsittely- ja myymälätehtäviin. Töiden aloitus on porrastetusti heinä - elokuun aikana.</p><p>Gallerian myymälään haetaan nyt tekijöitä monipuolisiin tehtäviin niin osastoille kuin muuhunkin myymälätoimintaan: </p><p>- Astiat<br>- Pukeutuminen<br>- Kirjat<br>- Kodintekstiilit<br>- Lelut ja lastentarvikkeet<br>- Pienelektroniikka<br>- Vapaa-aika<br>- Alkulajittelu<br>- Kassa ja myymälätyö.</p><p>Valittavilla henkilöillä tulee olla:</p><p>• mahdollisuus aloittaa noin 2 kk:n työkokeilulla <br>• oikeus 100 %:n palkkatukeen (varmistathan tämän omavalmentajaltasi)<br>• motivaatiota ja riittävää työkykyä<br>• riittävää kielitaitoa ymmärtää suomenkielisiä ohjeita <br>• valmiutta vuoro- ja viikonlopputyöhön.</p><p>SPR Kontti tarjoaa kattavan perehdytyksen, tukea ja ohjausta sekä kannustavan työyhteisön, jossa saat olla oma itsesi.</p><p>Hakemukset: rekry.espoonkontti@punainenristi.fi.</p><p>Paikalla on myös Espoon kaupungin edustajia, jotka neuvovat työnhaussa.</p><p>Lämpimästi tervetuloa!</p><p>#SinunTyösiPuolella</p>", "sv": "<p>Evenemanget är på finska. Läs mer om evenemanget på finska.</p>", "en": "<p>The event will be held in Finnish. More information is available on the Finnish event page.<br></p>" }, "provider": { "fi": "Työllisyys Espoo" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Työnantajatreffit: SPR Kontti", "sv": "Työnantajatreffit rekryteringevenemang", "en": "Työnantajatreffit recruitment event" }, "info_url": { "fi": "https://sprkontti.fi/toihin-konttiin" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxh4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh3sjcymi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxpu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxsu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxva/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcxzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcx3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcx6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcyam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcydm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcyge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcyjm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-27T07:24:35.668830Z", "last_modified_time": "2024-05-27T07:24:35.668861Z", "date_published": null, "start_time": "2024-05-29T05:00:00Z", "end_time": "2024-06-08T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Petőfin elämästä ja tuotoksista kertova monipuolinen suomenkielinen näyttely.", "sv": "En varierad utställning på finska om Petőfs liv och verk.", "en": "A varied exhibition in Finnish on Petőf's life and works." }, "description": { "fi": "<p>Viime vuonna Unkarin kansallisrunoilijan Sándor Petőfin syntymästä tuli kuluneeksi 200 vuotta. Petőfin elämästä ja tuotoksista kertova monipuolinen suomenkielinen näyttely tarjoaa runokatkelmien värittämänä runsaasti tietoa tästä vuosien 1848-49 vallankumouksen ja vapaussodan keskeisestä henkilöstä sekä hänen salaperäisestä elämästään.</p><p>Näyttely on esillä Espoonlahdessa Lippulaivan kirjastossa (huone Salonki), ja se on nähtävissä 29.5.-8.6.2024.</p><p>Näyttelyn avajaiset pidetään torstaina 30.5. klo 18.00–19.30. Avajaisissa esitetään Judit Godan esitelmä kirjailija-runoilija-kääntäjä Júlia Szendreystä. Luvassa on tietovisa ja keskustelua. Tarjoilla pientä purtavaa ja mehua.</p><p>Ei, runous, en koskaan jätä sinua,<br>En kykene siihen edes pakon alla.<br>Tulen ravitsemaan sinua<br>Rääkätyn rintani verellä kuumimmalla.</p><p>Sándor Petőfi: Runoilija olla vai eikö olla (Költő lenni vagy nem lenni) Suom. Tuula Komsi</p><p>Näyttelyn järjestäjät: <br>Helsingin Suomi-Unkari Seura, Liszt-instituutti Helsinki<br>(Unkarin kulttuurikeskus) Näyttely on laadittu Unkarin ulkoasiainministeriön toimeksiannosta yhteistyössä Petőfi<br>Kirjallisuusmuseon kanssa.</p><p>Kuratointi: Anna Czékmány, Andrea Borbás, Anna Kádár, Anna Magyary, Zsuzsanna Rózsafalvy,Diána Sóki</p><p>Graafinen suunnittelu: Stég Graphic Design, Gábor Norbert Kis, Attila Lőrincz, Gáspár Lőrincz, Márton Pattanyús</p><p>Suomennos: Ottilia Kovács, Runosuomennokset: Tuula Komsi, Toivo Lyy, Otto Manninen, Santala, Pekka Turkka</p>", "sv": "<p>Förra året firades 200-årsminnet av den ungerske nationalpoeten Sándor Petőfs födelse. En varierad utställning på finska om Petőfs liv och verk, med poetiska fragment, erbjuder en mängd information om denna centrala figur i revolutionen 1848-49 och självständighetskriget, liksom om hans mystiska liv.</p><p>Utställningen visas i Lippulaivans bibliotek (rummet Salonki) i Esboviken under tiden 29.5-8.6.2024.</p><p>Utställningen invigs torsdagen den 30.5. kl. 18.00-19.30. Under vernissagen håller Judit Goda en presentation om författaren, poeten och översättaren Júlia Szendrey. Det blir en frågesport och en diskussion. Snacks och juice kommer att serveras.</p>", "en": "<p>Last year marked the 200th anniversary of the birth of Hungary's national poet, Sándor Petőf. A varied exhibition in Finnish on Petőf's life and works, with poetic fragments, offers a wealth of information on this central figure of the 1848-49 revolution and the War of Independence, as well as on his mysterious life.</p><p>The exhibition is on display at the Lippulaivan Library (room Salonki) in Espoonlahti, and is open from 29 May to 8 June 2024.</p><p>The opening of the exhibition will take place on Thursday 30.5. at 18.00-19.30. The opening will include a presentation by Judit Goda on the writer-poet-translator Júlia Szendrey. There will be a quiz and a discussion. Snacks and juice will be served.</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Petőfi maailman ympäri -näyttely", "sv": "Petőfi Around the World - utställning", "en": "Petőfi Around the World - exhibition" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh3sjcymi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63123", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "38,30 €", "en": "38,30 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/3601047", "en": "https://www.lippu.fi/eventseries/3601047" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-28T10:14:11.962307Z", "last_modified_time": "2024-02-28T10:14:11.962326Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745131.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-28T10:14:11.934573Z", "last_modified_time": "2024-05-26T16:13:07.438716Z", "date_published": null, "start_time": "2024-05-31T16: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, "short_description": null, "description": { "fi": "<p>Winner of the Punch Line Bangalore Competition, <b>Kanan Gill</b>, has long been one of the most popular comedians in his native country of India. He then rose to global fame with the YouTube series \"Pretentious Movie Reviews\" where he reviewed flawed old Bollywood films in a witty manner. Kanan has toured across India and around the world in Singapore, Hong Kong, Dubai, Bangkok, Vietnam, the UK, The Netherlands, North America and Australia. His stand-up special \"Keep it Real\" is widely regarded as one of the best in the history of Indian stand-up.</p><p>Age limit: K-16</p><p>Duration about 85 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>", "en": "<p>Winner of the Punch Line Bangalore Competition, <b>Kanan Gill</b>, has long been one of the most popular comedians in his native country of India. He then rose to global fame with the YouTube series \"Pretentious Movie Reviews\" where he reviewed flawed old Bollywood films in a witty manner. Kanan has toured across India and around the world in Singapore, Hong Kong, Dubai, Bangkok, Vietnam, the UK, The Netherlands, North America and Australia. His stand-up special \"Keep it Real\" is widely regarded as one of the best in the history of Indian stand-up.</p><p>Age limit: K-16</p><p>Duration about 85 min, no intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "provider": { "fi": "W&T Comedy", "en": "W&T Comedy" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Kanan Gill", "en": "Kanan Gill" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C74A997EAADC0418B8543E2101FCD5B2/Kanan_Gill_", "en": "http://www.savoyteatteri.fi/en/events/event/C74A997EAADC0418B8543E2101FCD5B2/Kanan_Gill_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63123/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh267dkui", "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/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-25T10:31:12.464704Z", "last_modified_time": "2024-05-25T10:31:12.464735Z", "date_published": null, "start_time": "2024-06-11T06:00:00Z", "end_time": "2024-06-11T12: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, "short_description": { "fi": "Festarit on suunnattu erityisesti rikos-, päihde- ja mielenterveyskentän asiakkaille sekä ammattilaisille, mutta maksuton tapahtuma on avoin kaikille." }, "description": { "fi": "<p>Tervetuloa mukaan Yli Rajojen -kesäfestaritapahtumaan tiistaina 11.6.2024 Espoon Leppävaaraan!<br>Tapahtuma-alueena toimii Sellon kirjaston tapahtumatori, Sellon kauppakeskuksen Viaporintori sekä Sellon Finnkino.<br>Festarit on suunnattu erityisesti rikos-, päihde- ja mielenterveyskentän asiakkaille sekä ammattilaisille, mutta maksuton tapahtuma on avoin kaikille.</p><p>Sellon kirjaston tapahtumatori:<br>Klo 9-15 Messut<br>Messuilla pääset tutustumaan toimijoihin, jotka tarjoavat välityömarkkinapaikkoja ja/tai tukea rikoksettomaan ja päihteettömään elämään sekä mielenterveyden haasteisiin. Messuilla on mahdollisuus päästä keskustelemaan myös Helsingin, Espoon ja Vantaan työllisyyspalveluiden kanssa.</p><p>Klo 10.45-11.45 Paneelikeskustelu<br>Aiheena rikos-, päihde- ja mielenterveystaustaisten työllistymisen haasteet ja mahdolliset ratkaisut.</p><p>Viaporintori, Sellon kauppakeskus:<br>Klo 10-15 Musiikkia, esityksiä ja kokemuspuheenvuoroja<br>Tapahtumalavalla artisteja, bändejä, teatteria sekä kokemuspuhetta elämänmuutoksesta.<br>Kirjaston edessä grilli kuumana koko festaripäivän. Tarjolla kahvia, pullaa, makkaraa ja maissia.<br>Tapahtuma huipentuu Näkyville-projektin toteuttaman lyhytelokuvan ensiesitykseen. Projektissa ovat olleet mukana Kohdataan töissä -hankkeen osallistujat.</p><p>Sellon kirjasto, Akseli -sali:<br>klo 15-16 Paljon onnee vaa-lyhytelokuvaan liittyvä keskustelutilaisuus</p><p>Finnkino Sello,sali 2:<br>klo 16-16.30 Paljon onnee vaa -lyhytelokuva</p>" }, "provider": { "fi": "Valo valmennus ry" }, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Yli-rajojen kesäfestaritapahtuma" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh267dkui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63227", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "16,50 € / 10 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-18434764/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12865, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T14:14:17.365914Z", "last_modified_time": "2024-03-15T14:14:17.365930Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746130.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12865/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T14:14:17.343273Z", "last_modified_time": "2024-05-25T09:12:41.757569Z", "date_published": null, "start_time": "2024-05-25T12: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, "short_description": { "fi": "Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun." }, "description": { "fi": "<p>Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun.</p><p>Esiintyjinä ovat koulun kaikki oppilaat pienistä lapsista aikuisiin.</p><p>Esityksen kesto 1 h.</p><p>Liput: 16,50 € / 10 €</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Peppi Pitkätossu – Balettikoulu Anne Hirvosen kevätnäytös" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2487F382B58C2AEFC9E23C3D189827D0/Peppi_Pitkatossu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63227/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63226", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "16,50 € / 10 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/balettikoulu-anne-hirvonen-malmitalo-18434760/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12864, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T14:14:17.061892Z", "last_modified_time": "2024-03-15T14:14:17.061912Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746129.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12864/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T14:14:17.030336Z", "last_modified_time": "2024-05-25T09:12:41.617716Z", "date_published": null, "start_time": "2024-05-25T09: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, "short_description": { "fi": "Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun." }, "description": { "fi": "<p>Balettikoulu Anne Hirvosen oppilaat esittävät Peppi Pitkätossun.</p><p>Esiintyjinä ovat koulun kaikki oppilaat pienistä lapsista aikuisiin.</p><p>Esityksen kesto 1 h.</p><p>Liput: 16,50 € / 10 €</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Peppi Pitkätossu – Balettikoulu Anne Hirvosen kevätnäytös" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8F71794FBDB87173669F46A916F2F29E/Peppi_Pitkatossu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63690", "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:42/?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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151109, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-13T11:12:52.171835Z", "last_modified_time": "2024-05-13T11:12:52.171854Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744897.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-13T11:12:52.157445Z", "last_modified_time": "2024-05-24T09:12:49.975912Z", "date_published": null, "start_time": "2024-06-12T17:00:00Z", "end_time": "2024-06-12T19: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, "short_description": { "fi": "Illallinen Malmin taivaan alla kutsuu alueen asukkaat syömään yhteisen ruokapöydän ääreen Ala-Malmin puiston kauneuteen. Pitkä illallispöytä katetaan sadalle paikkansa ennakkoon varanneelle. Paikat täynnä!", "sv": "Middag under Malms himmel bjuder invånarna i området in att äta vid ett gemensamt middagsbord i den vackra Nedre Malms park. Det långa middagsbordet dukas åt ett hundra personer som har bokat sin plats på förhand.", "en": "Dinner under the Malmi sky invites local residents to eat at the same table in the beautiful Ala-Malmi Park. We will set a long dinner table for a hundred people with reservations." }, "description": { "fi": "<p>Illallinen Malmin taivaan alla kutsuu alueen asukkaat syömään yhteisen ruokapöydän ääreen Ala-Malmin puiston kauneuteen. Pitkä illallispöytä katetaan sadalle paikkansa ennakkoon varanneelle. Paikat täynnä!</p><p>Kutsu siis mukaan ystäväsi ja pakkaa mukaasi ruoat, juomat ja astiat – keskiviikkona 12.6. kippistetään yhdessä rakkaalle Helsingille!</p><p>Osallistuminen on maksutonta. Kiitos ilmoittautuneille ja yhteisessä ruokapöydässä nähdään! Pöytäpaikkojen lisäksi piknikiä voi tulla viettämään Ala-Malmin puiston nurmikoille ilman ennakkoilmoittautumista.</p><p>Illallisen lomassa esiintyy touko-yhtye, jonka jazzahtavat soinnut huikkaavat huikealle päivälle kiitoksensa. Olet lämpimästi tervetullut yhteisen illallispöydän äärelle!</p>", "sv": "<p>Middag under Malms himmel bjuder invånarna i området in att äta vid ett gemensamt middagsbord i den vackra Nedre Malms park. Det långa middagsbordet dukas åt ett hundra personer som har bokat sin plats på förhand.</p><p>Bjud alltså in dina vänner och packa med dig maten, dryckerna och kärlen – onsdagen den 12 juni skålar vi tillsammans för vårt kära Helsingfors!</p><p>Deltagande är avgiftsfritt. Anmälan är full.</p><p>Det finns ett begränsat antal av bordsplatser, men om de blir fyllda kan man komma och ha en picknick på gräsmattan i Nedre Malms park.</p><p>Under middagen spelar bandet touko, vars jazzliknande tongångar tackar den fina dagen. Du är varmt välkommen till det gemensamma middagsbordet!</p>", "en": "<p>Dinner under the Malmi sky invites local residents to eat at the same table in the beautiful Ala-Malmi Park. We will set a long dinner table for a hundred people with reservations.</p><p>Invite your friends and pack your own picnic food, drinks and plates – let’s raise a glass together on Wednesday, 12 June to our wonderful city, Helsinki!</p><p>Participation is free of charge. There is a limited number of seats, but even when they’re all gone, you can join everyone for a picnic in Ala-Malmi Park. The registration for the event is full.</p><p>The dinner will feature the music of the band, touko, whose jazzy tunes will be a highlight of this fantastic day. Join us all at the same table!</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Illallinen Malmin taivaan alla – Malmin tapahtumakesä", "sv": "Middag under Malms himmel – Malms evenemangssommar", "en": "Dinner under the Malmi sky – Malmi Summer of Events" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Illallinen_Malmin_taivaan_alla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Middag_under_Malms_himmel", "en": "http://www.malmitalo.fi/en/events/event/8B1B1EFFF8FF865334BEA0EF2EA99B81/Dinner_under_the_Malmi_sky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63690/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh2ohpgh4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:61461/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/460608959697562/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:tyt", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T10:19:16.278102Z", "last_modified_time": "2024-05-24T06:09:54.911709Z", "date_published": null, "start_time": "2024-06-12T14:00:00Z", "end_time": "2024-06-12T16: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, "short_description": { "fi": "Lämpimästi tervetuloa tutustumaan Kalajärvellä sijaitsevien Vaskitsamäen ja Niipperinniityn asemakaavoihin. ", "sv": "Vi presenterar målen och beredningsmaterialet för detaljplanerna och samlar in åsikter om projektet. Välkommen! ", "en": "We will present the objectives of the plans being prepared as well as related planning materials and collect residents’ views. Welcome! " }, "description": { "fi": "<p>Lämpimästi tervetuloa tutustumaan Kalajärvellä sijaitsevien Vaskitsamäen ja Niipperinniityn asemakaavoihin. Kaavoista on laadittu lähtökohdat ja tavoitteet ja nyt niiden pohjalta järjestetään infotilaisuus ja osallistumis- ja arviointisuunnitelmat. Infotilaisuudessa kerrotaan kaavojen sisällöistä ja kaavaprosessin etenemisestä.</p><p>Tilaisuus järjestetään opetustilassa Ahti, Kalajärven palvelukeskus, Ruskaniitty 4, 12.6.2024 klo 17–19.</p><p>Tilaisuuden info-osuudessa kerrotaan kaavojen tavoitteista ja alustavista suunnitelmista. Tämän jälkeen on varattu aikaa kysymyksille ja kommenteille sekä keskustelulle kaavojen suunnittelijoiden kanssa. Tapaat asukastilaisuudessa kaavan valmistelijoita ja kaupunkisuunnittelulautakunnan edustajia.</p><p>Tapahtuma on avoin kaikille kiinnostuneille. Ei ennakkoilmoittautumista, nähdään tilaisuudessa!<br> <br>Mistä on kyse Vaskitsamäen kaavassa?</p><p>Vaskitsamäen kaava-alue sijaitsee Kalajärven kaupunginosassa Kalajärven keskuksen pohjoispuolella. Alueella sijaitsee muutamia rakennuksia, mutta alue on suurimmaksi osaksi metsää. Kuntorata sijoittuu kaava-alueen pohjois- ja keskiosiin. Alue on asemakaavoittamaton.</p><p>Vaskitsamäen asemakaava suunnitellaan tiiviinä ja matalana vartin kaupunkikylänä. Tavoitteena on suunnitella yhtenäinen asuinalue, joka koostuu vaihtelevista talotyypeistä. Painotus on matalissa pientalomaisissa rakennuksissa (1–2 kerrosta). Korkeampia (4–5 kerrosta) ja tiiviimpiä korttelialueita suunnitellaan kaava-alueen eteläosiin Kalajärven keskustan läheisyyteen. Asemakaavalla kytketään Kalajärven keskus jatkumaan Vihdintien pohjoispuolelle palveluiden sekä tehokkaamman maankäytön muodossa. </p><p>Asemakaavalla luodaan edellytykset 1000–1400 uudelle asukkaalle. Kerrosneliömetreinä uutta asuinrakentamista osoitetaan 50 000–70 000 k-m² verran. Asuinrakentamisen lisäksi alueelle varataan tilaa 10-ryhmäiselle päiväkodille sekä lähiliikuntapaikalle, joka sisältää pelikentän. Lisäksi Vihdintien varteen tutkitaan korttelia liiketilalle tai päivittäistavarakaupalle ja mahdollisesti senioriasumiseen.</p><p>Suunnittelun yhteydessä selvitetään alueen luontoarvot ja varmistetaan ekologisten yhteyksien toimivuus. Nykyinen virkistysreitistö ja sen yhteyteen suunniteltavat metsäiset korttelipihat muodostavat alueen yleisilmeestä vehreän. Vaskitsamäkeen tavoitellaan kattavia ja viihtyisiä jalankulun ja pyöräliikenteen reittejä alueen sisällä sekä sujuvia yhteyksiä Vihdintien bussipysäkeille ja Kalajärven keskustaan. Katutilat suunnitellaan viihtyisiksi ja yksityiskohdiltaan vaihteleviksi. Vaskitsamäessä kiinnitetään huomiota asumisen ja palveluiden saavutettavuuteen henkilöautolla sekä yleisten pysäköintipaikkojen riittävyyteen. </p><p>Kaavan osallistumis- ja arviointisuunnitelma sekä valmisteluaineisto on nähtävillä 10.6.–9.7.2024 Espoon kaupungin verkkosivustolla. Löydät sen parhaiten kirjoittamalla sivun hakuun ” Vaskitsamäen asuinalue”.</p><p>Lisätietoja:</p><p>Mikko Malmström<br>arkkitehti<br>040 636 8644<br>mikko.malmstrom@espoo.fi<br>--<br> <br>Mistä on kyse Niipperinniityn kaavassa?</p><p>Kalajärven keskuksen ja Niipperin välissä on laaja, suurimmaksi osin asemakaavoittamaton alue, jossa sijaitsee Niipperinniityn, Antinmäen ja Niipperinmäen pientaloalueet, sekä paljon peltoja ja metsää.</p><p>Asemakaavan tavoitteena on suunnitella alueelle viihtyisää ja luonnonläheistä pientaloaluetta olevaan rakenteeseen tukeutuen ja sitä täydentäen. Asemakaavalla turvataan alueen luonto- ja kulttuurihistorialliset arvot. Asemakaavaan suunnitellaan myös pienimuotoisia lähipalveluita sekä laadukas lähivirkistysalueiden verkosto.</p><p>Rakentamisen tehokkuudeksi on suunniteltu pääosin noin e = 0,15–0,25. Kaupunkirakenteen keskisimmällä kohdalla tutkitaan rakentamisen tehokkuutta noin e = 0,25–0,35.</p><p>Kaavan osallistumis- ja arviointisuunnitelma sekä valmisteluaineisto on nähtävillä 27.5.–25.6.2024 Espoon kaupungin verkkosivustolla. Löydät sen parhaiten kirjoittamalla sivun hakuun ”Niipperinniityn pientaloalue” tai www.espoo.fi/fi/hankkeet/niipperinniityn-pientaloalue (kopioi linkki selaimeesi).</p><p>Lisätietoja:</p><p>Hugo Leppäsyrjä<br>arkkitehti<br>040 636 5089<br>hugo.leppasyrja@espoo.fi<br>--</p><p>Turvallisemman tilan periaatteet<br>Haluamme, että tapahtumassamme on kaikilla hyvä olla, minkä vuoksi tapahtumassa noudatetaan turvallisemman tilan periaatteita.</p><p>Kunnioitathan siis muiden rajoja. Älä myöskään tee turhia oletuksia kanssaolijoiden taustoista, sukupuolesta, seksuaalisuudesta tai muista identiteettitekijöistä. Kaikenlainen häirintä, syrjintä tai muu toisten rajojen rikkominen johtaa häiriköijän poistamiseen alueelta.</p><p>Mikäli kohtaat häirintää tai ahdistavia tilanteita tapahtumassamme, ole rohkeasti yhteydessä henkilökuntaan.<br></p>", "sv": "<p>Vi presenterar målen och beredningsmaterialet för detaljplanerna och samlar in åsikter om projektet. Välkommen! </p><p>Vi ordnar ett allmänt möte 12.6.2024 kl. 17-19 på servicetorget i Kalajärvi, Ahti (Höstglödsängen 4).</p><p>Det allmänna mötet ordnas av stadsplaneringscentralen och hålls på finska. Du kan ställa frågor och kommentera på finska, svenska eller engelska. Du kan kontakta planeraren per e-post.</p><p>www.espoo.fi/sv/projekt/bostadsomradet-kopparormsbacken</p><p>www.espoo.fi/sv/projekt/smahusomradet-nipertangen</p><p>Kontaktuppgifter</p><p>Kopparormsbacken:</p><p>Mikko Malmström<br>040 636 8644<br>mikko.malmstrom@espoo.fi</p><p>Nipertängen</p><p>Hugo Leppäsyrjä<br>040 636 5089<br>hugo.leppasyrja@espoo.fi</p><p><br>Principerna för tryggt rum:</p><p>Vi vill att alla ska ha det bra på vårt evenemang, varför vi efterlever principerna för tryggt rum vid det.</p><p>Var snäll och respektera andras gränser. Gör heller inga onödiga antaganden om dina medbesökares bakgrunder, kön, sexualitet eller andra identitetsfaktorer. Alla former av trakasserier, diskriminering och annat gränsöverskridande beteende leder till att den som stör eskorteras bort från området.</p><p>Om du upplever trakasserier eller en pressad situation vid vårt evenemang, ta modigt kontakt med personalen!<br></p>", "en": "<p>We will present the objectives of the plans being prepared as well as related planning materials and collect residents’ views. Welcome! </p><p>We will organise the event at Ahti, Kalajärvi Service Centre, Ruskaniitty 4, on 12 June 2024 at 17:00-19:00.</p><p>The event is organised by the City Planning Department. The event will be held in Finnish. You can ask questions and share your comments in English or Swedish or contact the planner directly by email.</p><p>www.espoo.fi/en/projects/vaskitsamaki-residential-area</p><p>www.espoo.fi/en/projects/niipperinniitty-area-detached-and-semi-detached-area</p><p>Contact Information</p><p>Vaskitsamäki:</p><p>Mikko Malmström<br>040 636 8644<br>mikko.malmstrom@espoo.fi</p><p>Niipperinniitty:</p><p>Hugo Leppäsyrjä<br>040 636 5089<br>hugo.leppasyrja@espoo.fi<br>--</p><p>Principles for a safer space:</p><p>We want everyone to feel comfortable at our event, which is why the event will be held in accordance with the principles for a safer space.</p><p>As such, please respect other people’s boundaries at the event and do not make assumptions about other attendees’ background, gender, sexuality or other parts of their identity. Any kind of harassment, discrimination and violation of other people’s boundaries are grounds for removal from the premises.</p><p>If you encounter any harassment or distressing situations at our event, please do not hesitate to contact the staff!<br></p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Opetustila Ahti" }, "name": { "fi": "Info- ja keskustelutilaisuus: Vaskitsamäen ja Niipperinniityn asemakaavat", "sv": "Ett informations- och diskussionsmöte: Kopparormsbacken 721900 och Nipertängen 714800", "en": "Information and discussion session: Vaskitsamäki 721900 and Niipperinniitty 714800" }, "info_url": { "fi": "https://www.espoo.fi/fi/hankkeet/vaskitsamaen-asuinalue", "sv": "https://www.espoo.fi/sv/projekt/bostadsomradet-kopparormsbacken", "en": "https://www.espoo.fi/en/projects/vaskitsamaki-residential-area" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh2ohpgh4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63884", "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:42/?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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151285, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T11:13:02.592603Z", "last_modified_time": "2024-05-23T11:13:02.592619Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746039.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151285/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T11:13:02.575869Z", "last_modified_time": "2024-05-23T13:12:47.332604Z", "date_published": null, "start_time": "2024-08-24T09: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, "short_description": { "fi": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.", "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.", "en": "Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm." }, "description": { "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Ala-Malmin torilta Malmitalon edestä klo 12 ja kestää noin klo 13.30 saakka.</p><p><b>Ylä-Malmin vaiheita kävellen</b><br>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisessa miljöössä, johon tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Tule mukaan nostalgiselle kierrokselle läpi rakkaan kaupunginosamme tarinaa!</p><p>Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista.</p>", "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia på svenska. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar fram till cirka kl. 13.30.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala. Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme.</p><p>Promenaden har genomförts i samarbete med Malms kulturhus och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p><p>Fritt inträde, ingen förhandsanmälan.</p>", "en": "<p>Get to know the history of Malmi on a guided walking tour in Finnish. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half.</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Free admission, no advance registration.</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä", "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar", "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/621EED4A96E2F73BAE8381473FF13C6A/Rauhallinen_muistelukavely_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/621EED4A96E2F73BAE8381473FF13C6A/Lugn_minnespromenad_pa_Malm", "en": "http://www.malmitalo.fi/en/events/event/621EED4A96E2F73BAE8381473FF13C6A/A_peaceful_walk_down_memory_lane_at_Malmi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63884/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61585", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6432, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.632056Z", "last_modified_time": "2024-02-06T13:23:43.654076Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738570.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.610979Z", "last_modified_time": "2024-05-23T13:12:41.900931Z", "date_published": null, "start_time": "2024-05-26T12: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, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/3A16158E806108BA479FC645383AD1CE/How_will_you_carry_this_PREMIERE" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61585/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61584", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6431, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.517678Z", "last_modified_time": "2024-02-06T13:23:43.557372Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738569.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6431/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.493294Z", "last_modified_time": "2024-05-23T13:12:41.816699Z", "date_published": null, "start_time": "2024-05-25T15: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, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/8640ACB982593D8BA5AD60D67367E88B/How_will_you_carry_this_PREMIERE" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61583", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6430, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.347140Z", "last_modified_time": "2024-02-06T13:23:43.188036Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738568.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6430/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.327226Z", "last_modified_time": "2024-05-23T13:12:41.504610Z", "date_published": null, "start_time": "2024-05-24T16: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, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/7ADBB60861DA9C687CEA3612E8A8CC12/How_will_you_carry_this_PREMIERE" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61583/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61582", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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: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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 6 €", "sv": "15 € / 6 €", "en": "15 € / 6 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/how-will-you-carry-this-3592134/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-05T12:13:50.218990Z", "last_modified_time": "2024-02-06T13:23:43.009397Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738567.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-05T12:13:50.182500Z", "last_modified_time": "2024-05-23T13:12:41.293778Z", "date_published": null, "start_time": "2024-05-23T16: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, "short_description": { "fi": "Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.", "sv": "Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.", "en": "Multimedia, live art and music performance about myths, migrating bodies and transformation." }, "description": { "fi": "<p>Monitaiteinen, elävää taidetta ja musiikkia yhdistävä esitys myyteistä, ruumiiden vaelluksesta ja muodonmuutoksesta.</p><p>Taiteilijat <b>Martin Ormin</b>, <b>Isabella Shaw</b> ja <b>Olga Spyropoulou</b> tutkivat omia erilaisia kokemuksiaan vaelluksesta ja kerrostuneista identiteeteistä myyttien kautta. He pyytävät yleisöä astumaan epävarmuuden maailmaan, jossa totuus ja todellisuus hämärtyvät, lumous ja metamorfoosi ovat selviytymisen edellytyksiä ja loitsiminen on yhtä tavanomaista kuin omenan kuoriminen.<br>Valosuunnittelu: Sisu Nojonen</p><p>Kesto: 60 min<br>Kieli: englanti</p><p>Liput: 15 € / 6 € osoitteesta lippu.fi.<br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. Lue lisää kulttuurikavereista <u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">täältä</u></a>. Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>", "sv": "<p>Multimedia-, livekonst- och musikperformance om myter, migration och omvandling.</p><p>Artisterna <b>Martin Ormin, <b>Isabella Shaw och <b>Olga Spyropoulou utforskar sina olika erfarenheter av migration och identitetsskikt genom en lins av myter. De bjuder in publiken till en osäker värld, där sanningen och verkligheten är otydlig, där förtrollning och metamorfos är överlevnadshandlingar, och där magiska krafter tillhör vardagen.</p>", "en": "<p>Multimedia, live art and music performance about myths, migrating bodies and transformation.</p><p>Imagine holding a bird, its feathers prickly against the skin of your palms. Imagine holding a stone, a baby boat, a mountain, a city. You have to feed it every thirty minutes, you have to set it down, you have to watch it as it grows.<br> <br>This story could have been different or maybe it never occurred.<br> <br>Artists <b>Martin Ormin</b>, <b>Isabella Shaw</b> and <b>Olga Spyropoulou</b> explore their own diverse experiences of migration and layered identities through the lens of myth. They ask the audience to enter a world of uncertainty where truth and reality are blurred, enchantment and metamorphosis are acts of survival, and casting a spell is as ordinary as peeling an apple.</p><p>Working group: Martin Ormin, Isabella Shaw, Olga Spyropoulou.<br>Lighting designer: Sisu Nojonen</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": null, "name": { "fi": "How will you carry this? | ENSI-ILTA", "sv": "How will you carry this? | PREMIÄR", "en": "How will you carry this? | PREMIERE" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_ENSI-ILTA", "sv": "http://www.caisa.fi/sv/evenemang/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIAR", "en": "http://www.caisa.fi/en/events/event/4DA29E8FDA6CCE4D4A1F4C879055F502/How_will_you_carry_this_PREMIERE" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh7yuibq4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuiblm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-05-21T08:39:27.998521Z", "last_modified_time": "2024-05-23T12:16:12.841773Z", "date_published": "2024-05-27T05:00:00Z", "start_time": "2024-06-03T07:00:00Z", "end_time": "2024-06-10T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla!", "sv": "Lär dig att laga god och hälsosam mat med K-Supermarket Lippulaivas matlagningskurs!", "en": "Learn how to cook delicious and healthy food in K-Supermarket Lippulaiva's cooking course!" }, "description": { "fi": "<p>K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille<br>Maanantaina 3.6.2024 ja maanantaina 10.6.2024 klo 10-14.</p><p>Opi kokkaamaan herkullista ja terveellistä ruokaa K-Supermarket Lippulaivan ruokakurssilla! Tämä on tilaisuutesi oppia valmistamaan maukas ja ravitseva lounas ja välipala. Lounaan nautimme yhdessä, välipalan pakkaamme sinulle mukaan kotona nautittavaksi.</p><p>Kurssilla valmistamme:<br>•Lounas: Rukiiset kalahampurilaiset itse leivotuilla sämpylöillä ja paistetulla kalalla sekä herkulliset lohkokasvikset.<br>•Välipala: Raikkaat smoothiekulhot <br>Kurssin ohjaajana: KM kotitalousopettaja, yrittäjä Kati Pohjanmaa. Kurssi pidetään Lippulaivan kirjasto Kapyysi -tilassa. Käymme myös yhdessä ruokaostoksilla K-Supermarket Lippulaivassa.</p><p>Ilmoittautuminen: Kurssille mahtuu 10 osallistujaa ilmoittautumisjärjestyksessä. Ilmoittaudu mukaan sähköpostitse osoitteeseen kati@katipohjanmaa.fi.<br>Osallistuminen on veloituksetonta! Lisätietoja www.katipohjanmaa.fi</p><p>Tule mukaan ja koe ruoanlaiton riemu!</p>", "sv": "<p>Matlagningskurs för 11-13-åringar. </p><p>Syftet med matlagningskursen är att deltagarna ska lära sig grundläggande matlagningskunskaper.</p><p>Under kursen kommer vi att förbereda:<br>-Lunch. Fiskhamburgare med egengjorda hamburgerbröd.<br>-Mellanmål: färska smoothie bowls <br>Kursledare: hemkunskapslärare, företagare Kati Pohjanmaa. Kursen hålls i det gemensamma köket Kapyysi i Lippulaiva bibliotek. Vi kommer också att gå och handla tillsammans på K-Supermarket Lippulaiva.</p><p>Matlagningskursen är på finska. </p><p>Anmälan till kursen. Vänligen anmäl dig per e-post till kati@katipohjanmaa.fi. De 10 första personerna som anmält sig per e-post får delta i kursen.<br>Deltagandet är kostnadsfritt! För mer information, vänligen kontakta www.katipohjanmaa.fi</p>", "en": "<p>Food course for 11-13 year olds. </p><p>The aim of the cooking course is for participants to learn basic cooking skills.</p><p>During the course we will prepare:<br>-Lunch. Fish hamburgers with self made burger buns.<br>-Snack: fresh smoothie bowls <br>Course instructor: home economics teacher, entrepreneur Kati Pohjanmaa. The course will be held in the communal kitchen Kapyysi in Lippulaiva Library. We will also go grocery shopping together at K-Supermarket Lippulaiva.</p><p>The cooking course is in finnish. </p><p>Registration. Please register by e-mail to kati@katipohjanmaa.fi. First 10 people registered by email will be able to attend the course.<br>Participation is free of charge! For more information, please contact www.katipohjanmaa.fi</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Kapyysi", "sv": "Kapyysi", "en": "Kapyysi" }, "name": { "fi": "K-Supermarket Lippulaivan Ruokakurssi 11-13 -vuotiaille", "sv": "Matkurs för ungdomar i åldern 11-13 år anordnad tillsammans med K-Supermarket Lippulaiva", "en": "Food Course organized with K-Supermarket Lippulaiva for 11-13 year olds" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibq4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agh7yuibvi", "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/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-05-22T11:49:55.244283Z", "last_modified_time": "2024-05-23T11:29:09.686139Z", "date_published": "2024-05-23T06:02:00Z", "start_time": "2024-06-03T10:00:00Z", "end_time": "2024-06-03T13: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, "short_description": { "fi": "Työpajalla tutustutaan stop-motion animaation alkeisiin", "sv": "I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.", "en": "In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc." }, "description": { "fi": "<p>Työpajalla tutustutaan stop-motion animaation alkeisiin: nuken liikuttamiseen, kameran asetteluun ja tarinankaaren pohdintaan.</p><p>Animaatiota päästään kokeilemaan nukeilla sekä muovailuvahalla. </p><p>Ohjausta suomeksi, venäjäksi, viroksi, ruotsiksi ja englanniksi</p>", "sv": "<p>I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.</p><p>Vi får prova på animering med dockor och lera.</p><p>Handledning på finska, ryska, estniska, svenska och engelska</p>", "en": "<p>In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc.</p><p>We will get to try animation with puppets and clay.</p><p>Guidance in Finnish, Russian, Estonian, Swedish and English</p>" }, "provider": { "fi": "Animaatiopaja Ankka, ohjaajat Ella Pomeranz ja Cami Fenge.", "sv": "Animaatiopaja Ankka, ohjaajat Ella Pomeranz ja Cami Fenge.", "en": "Animaatiopaja Ankka, ohjaajat Ella Pomeranz ja Cami Fenge." }, "provider_contact_info": null, "location_extra_info": { "fi": "Nuorten tila", "sv": "Ungdomsutrymmet", "en": "Teen Space" }, "name": { "fi": "Animaatiopaja: Ankka", "sv": "Animationsverkstad: Anka", "en": "Animation Workshop: Duck" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7yuibvi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghzwgntcu", "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/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-21T12:08:18.125510Z", "last_modified_time": "2024-05-23T11:17:19.437608Z", "date_published": null, "start_time": "2024-06-18T10:00:00Z", "end_time": "2024-06-18T13: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, "short_description": { "fi": "Työpajalla tutustutaan\nstop-motion animaation alkeisiin.", "sv": "I verkstaden bekantar vi oss med grunderna i stop-motion-animering. ", "en": "In the workshop, we will learn the basics of stop-motion animation." }, "description": { "fi": "<p>Työpajalla tutustutaan<br>stop-motion animaation alkeisiin:<br>nuken liikuttamiseen, <br>kameran asetteluun ja tarinankaaren pohdintaan.</p><p>Animaatiota päästään kokeilemaan <br>nukeilla sekä muovailuvahalla. </p><p>ohjausta suomeksi, venäjäksi, viroksi, ruotsiksi ja englanniksi<br> <br>Järjestäjä: Animaatiopaja Ankka, ohjaajina Ella Pomeranz ja Cami Fenge.</p>", "sv": "<p>I verkstaden bekantar vi oss med grunderna i stop-motion-animering: hur man rör en docka, hur man ställer in kameran och hur man skapar en berättelsebåge.</p><p>Vi får prova på animering med dockor och lera.</p><p>handledning på finska, ryska, estniska, svenska och engelska</p><p>Arrangör: Animaatiopaja Ankka, Instruktörer Ella Pomeranz och Cami Fenge.</p>", "en": "<p>In the workshop, we will learn the basics of stop-motion animation: moving the puppet, setting up the camera, and considering the story arc.</p><p>We will get to try animation with puppets and clay.</p><p>guidance in Finnish, Russian, Estonian, Swedish and English</p><p>organiser: Animaatiopaja Ankka, instructor Ella Pomeranz and Cami Fenge.</p>" }, "provider": null, "provider_contact_info": null, "location_extra_info": { "fi": "Stage " }, "name": { "fi": "Animaatiopaja: Ankka", "sv": "animationsverkstad", "en": "animation workshop" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghzwgntcu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19181, "next": "