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=157
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=158", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=156" }, "data": [ { "id": "elo:d2efe0b7-7158-45fa-83d8-96eaef218774", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=MKtest_01102024_T3A_luonti2480893779" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api" } ], "created_time": "2024-10-01T11:59:13.033523Z", "last_modified_time": "2024-10-01T11:59:14.542046Z", "date_published": "2024-10-01T11:57:31Z", "start_time": "2024-10-14T22:00:00Z", "end_time": "2024-10-14T22:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 2, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-10-02T08:00:00+03:00", "enrolment_end_time": "2024-10-02T08:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 01102024 T3A <päivitys 1>" }, "provider": { "fi": "Business fi" }, "info_url": null, "description": { "fi": "<div><p>long</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "short" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:d2efe0b7-7158-45fa-83d8-96eaef218774/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a16849ac-6508-4c68-befe-6b0c448737b0", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/71c4439b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_01102024_T2_muutos2788966039" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 152655, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-01T11:41:04.993914Z", "last_modified_time": "2024-10-01T11:41:04.993929Z", "name": "asdf", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5", "cropping": "", "photographer_name": "asdf", "alt_text": "asdf", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152655/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-10-01T11:41:05.649011Z", "last_modified_time": "2024-10-01T11:41:05.649030Z", "date_published": "2024-10-01T11:40:21Z", "start_time": "2024-10-02T10:00:00Z", "end_time": "2024-10-02T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 2, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-09-30T08:00:00+03:00", "enrolment_end_time": "2024-10-01T08:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 01102024 T2B <luonti>" }, "provider": { "fi": "Test business" }, "info_url": null, "description": { "fi": "<div><p>asdf long</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "asdf lyhyt" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a16849ac-6508-4c68-befe-6b0c448737b0/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aa8f13fa-e539-4731-9716-2051517f813e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/71c4439b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_01102024_T23323769395" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 152652, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-01T11:38:21.810210Z", "last_modified_time": "2024-10-01T11:38:21.810226Z", "name": "asdf", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5", "cropping": "", "photographer_name": "asdf", "alt_text": "asdf", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152652/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-10-01T11:19:59.150493Z", "last_modified_time": "2024-10-01T11:38:23.068563Z", "date_published": "2024-10-01T11:16:55Z", "start_time": "2024-10-02T10:00:00Z", "end_time": "2024-10-02T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 2, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-09-30T08:00:00+03:00", "enrolment_end_time": "2024-10-01T08:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 01102024 T2 <muutos>" }, "provider": { "fi": "Test business" }, "info_url": null, "description": { "fi": "<div><p>asdf long</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "asdf lyhyt" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aa8f13fa-e539-4731-9716-2051517f813e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:f3c92f9c-f0c1-4611-b54b-4065446e0a86", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/71c4439b-e006-ef11-9f89-000d3ab3ec01?readableEventId=MKtest_27092024_user_story_556task_624_uusi_custom_kentt_fi3015018330" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 152645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-01T11:13:02.850189Z", "last_modified_time": "2024-10-01T11:13:02.850205Z", "name": "asdf kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/15cb8ee9-057c-ef11-ac20-0022489ae80c", "cropping": "", "photographer_name": "asdf Linssi", "alt_text": "asdf alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-10-01T11:05:35.263010Z", "last_modified_time": "2024-10-01T11:13:03.726230Z", "date_published": "2024-10-01T10:47:17Z", "start_time": "2024-10-05T10:00:00Z", "end_time": "2024-10-05T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": 2, "enrolment_start_time": "2024-09-02T08:00:00+03:00", "enrolment_end_time": "2024-10-03T08:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "MKtest 01102024 (user story 556/task 624) uusi custom kenttä EN_muutos" }, "provider": { "fi": "This was arranged by The Business Helsinki" }, "info_url": null, "description": { "fi": "<div><p>Pitkä kuvaus tulee tähän kenttään <br><br>PS Vähimmäisosallistujamäärä tässä le-tapahtumassa 2 ja enimmäis 4 JA alaikäraja nolla ja yläikäraja nolla.</p></div>" }, "provider_contact_info": null, "short_description": { "fi": "Lyhyt kuvaus tulee tähän kenttään" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:f3c92f9c-f0c1-4611-b54b-4065446e0a86/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjefaiipy", "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:agggfz656q/?format=api" }, { "@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:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-30T08:12:07.926573Z", "last_modified_time": "2024-10-01T11:11:46.640505Z", "date_published": "2024-09-30T07:58:00Z", "start_time": "2024-10-01T05:00:00Z", "end_time": "2024-10-26T15: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, "name": { "fi": "Asiakkaiden omien lemmikkikuvien näyttely", "sv": "Utställning: Kundernas husdjursfoton", "en": "Art exhibition: Customers' pet photos" }, "provider": null, "info_url": null, "description": { "fi": "<p><strong>Asiakkaiden omia lemmikkikuvia on esillä Tapiolan kirjastossa 1.-26.10.2024.</strong></p><p>Tapiolan kirjaston asiakkailla oli mahdollisuus lähettää kuvia lemmikeistään lomakkeen kautta heinäkuusta syyskuun loppuun. Saaduista kuvista on nyt koottunäyttely kaikkien nähtäväksi!</p><p>Kuvat ilahduttavat ja sulostuttavat tarinoineen!</p><p>Kiitos kaikille kuvansa lähettäneille!</p>", "sv": "<p>Kundernas egna bilder på husdjur visas i Hagalunds bibliotek 1.-26.10.2024.</p><p>Kunderna på Tapiola bibliotek hade möjlighet att skicka in bilder på sina husdjur. En utställning av de inkomna bilderna är nu uppe för alla att se!</p><p>Bilderna är förtjusande och charmiga med sina berättelser!</p><p>Tack till alla som skickade in sina bilder!</p>", "en": "<p>Customers' own pet photos will be on display at Tapiola Library from 1.-26.10.2024.</p><p>Tapiola Library customers had the opportunity to send photos of their pets. An exhibition of the photos received is now available for all to see!</p><p>The pictures are delightful and charming with their stories!</p><p>Thank you to everyone who sent in their photos!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Asiakkaiden omia lemmikkuvia on esillä Tapiolan kirjastossa 1.-26.10.2024.", "sv": "Kundernas egna bilder på husdjur visas i Hagalunds bibliotek 1.-26.10.2024.", "en": "Customers' own pet photos will be on display at Tapiola Library from 1-26.10.2024." }, "location_extra_info": { "fi": "Näyttelytila Kaija", "sv": "Utställningsväggen Kaija", "en": "Exhibition wall Kaija" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjefaiipy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi2bb22ea", "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:agggfz66hi/?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, "info_url": null, "description": 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" } ], "created_time": "2024-08-29T08:36:59.758676Z", "last_modified_time": "2024-10-01T11:03:37.475472Z", "date_published": null, "start_time": "2024-10-19T11:00:00Z", "end_time": "2024-10-19T11:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Diwali – Valon juhla: Lyhtytyöpaja ", "en": "Diwali – Festival of Lights: Lantern Workshop " }, "provider": { "fi": "Lippulaivan kirjasto, Espoonlahden kulttuurihanke, Espoon kulttuuritalo ja -palvelut, Suomi-Intia seura.", "en": "Children’s Cultural Center Aurora, Espoo’s cultural services, The Finnish-Indian Society." }, "info_url": { "fi": "https://www.espoo.fi/fi/kulttuuriespoo/diwali-valon-juhla", "en": "https://www.espoo.fi/en/cultureespoo/diwali-festival-lights" }, "description": { "fi": "<p>Lyhtytyöpajassa pääset askartelemaan perinteisiä intialaisia lyhtyjä, ja samalla saat ainutlaatuisen tilaisuuden tutustua intialaiseen kulttuuriin luovan tekemisen kautta. Työpaja sopii kaikille, iästä ja taitotasosta riippumatta. Ennakkoilmoittautuminen vaaditaan, katso linkki.</p><p>Työpajassa luodaan yksityiskohtaisia lyhtyjä erilaisia tekniikoita käyttäen. Opettaja ohjaa sinua vaihe vaiheelta, ja voit valita, haluatko tehdä perinteisen vai modernin lyhdyn, jonka voit koristella helmillä, paljeteilla ja glitterillä, tehden siitä täysin uniikin. </p><p>Työpajan vetää Komal Agarwal, itseoppinut taiteilija ja käsityöharrastaja, jota kiinnostaa erilaisten ilmaisuvälineiden ja materiaalien tutkiminen. Hänen luonnoskirjansa ja kynänsä ovat aina mukana, valmiina vangitsemaan inspiroivat hetket. Komalin työpajoissaan pidetään hauskaa ja annetaan luovuuden virrata! </p><p><br></p><p>Työpajojen kieli on pääosin englanti.</p><p><br></p><p><strong>Työpajaan mahtuu 20 henkilöä. Tilaisuuteen voi varmistaa paikkansa ennakkovarauksella, joka sulkeutuu perjantaina 18.10. klo 12. Mikäli vapaita paikkoja jää, voit osallistua myös suoraan saapumalla ovelle</strong>.</p><p><br></p><p>Työpajat ovat osa Diwali – Valon juhla -tapahtumaa, jonka Espoon kulttuuritalot ja -palvelut järjestävät yhteistyössä Suomi-Intia seuran kanssa. Työpajat järjestetään yhteistyössä Lippulaivan kirjaston ja Espoonlahden kulttuurihankkeen kanssa. Lue lisää tapahtumakokonaisuudesta täältä: https://www.espoo.fi/fi/kulttuuriespoo/diwali-valon-juhla</p><p><br></p><p>Diwali </p><p>Diwali on hindulainen juhla, jota vietetään laajasti Intiassa, Nepalissa ja muualla maailmassa lokakuun ja marraskuun välisenä aikana. Samalla vaihtuu hindulaisen kalenterin uusi vuosi. Diwali on valon, hyvyyden ja uusien alkujen juhla, jossa toivotaan hyvää terveyttä, vaurautta ja suojelua uudelle vuodelle. Juhla tuo mieleen suomalaisen joulun: ihmiset siivoavat ja koristelevat kotinsa, sytyttävät kynttilöitä, antavat lahjoja, syövät hyvin ja viettävät aikaa läheisten kanssa. Diwalin aikaan sytytetään öljylamppuja (diyas) ja kynttilöitä, koristellaan koti värikkäillä koristeilla, joita kutsutaan rangoleiksi, ja ammutaan ilotulitteita. Juhla yhdistyy myös antamisen iloon, hyvään mieleen ja muiden auttamiseen. Diwali tuo valoa pimeyteen! </p><p> </p><p>Lyhtytyöpajat Lippulaivan kirjastossa</p><p>La 19.10.2024 </p><p>klo 13:00-13.45 Lyhtytyöpaja. Linkki ilmoittautumiseen: https://link.webropolsurveys.com/EP/C7046848B5A499F0 </p><p>Klo 14:00-14.45 Lyhtytyöpaja. Linkki ilmoittautumiseen: https://link.webropolsurveys.com/EP/4A025721AC75B82E</p>", "en": "<p>In this lantern workshop, you will have the opportunity to craft traditional Indian lanterns while also getting a unique chance to explore Indian culture and traditions through creative activities. The workshop is suitable for everyone, regardless of age or skill level. </p><p>In the workshop, detailed lanterns will be created using various techniques. The instructor will guide you step by step, and you can choose to make either a traditional or a modern lantern, which you can decorate with beads, sequins, and glitter to make it truly unique. </p><p>The workshop is led by Komal Agarwal, a self-taught artist and craft enthusiast who is passionate about exploring different mediums and materials. Her sketchbook and pen are always with her, ready to capture inspiring moments. Komal’s workshops are all about having fun and letting creativity flow! </p><p><br></p><p>The language of the workshops is primarily English.</p><p><br></p><p><strong>The workshop has a capacity of 20 people. Secure your place by pre-booking, which closes on Friday 18 September at 12 pm. If free spots remain, you can request those by arriving at the workshop. </strong></p><p><br></p><p>The workshops are part of the Diwali – Valon juhla event organized by Espoo City Cultural Services in collaboration with Suomi-Intia-Seura a.k.a Finnish-Indian society. The full event programme: espoo.fi/diwali.</p><p><br></p><p>Diwali </p><p><br></p><p>Diwali is a Hindu festival widely celebrated in India, Nepal and around the world between October and November. It also marks the beginning of the new year in the Hindu calendar. Diwali is a festival of light, goodness and new beginnings, during which people wish for good health, prosperity and protection for the new year. The celebration is reminiscent of Christmas in Finland: people clean and decorate their homes, light candles, give gifts, enjoy good food, and spend time with loved ones. During Diwali, oil lamps (diyas) and candles are lit, homes are decorated with colorful ornaments known as rangolis, and fireworks are set off. The festival also emphasizes the joy of giving, spreading happiness, and helping others. Diwali brings light to the darkness! </p><p> </p><p>Workshops at Lippulaiva Library </p><p>Sat 19.10.2024 </p><p><br></p><p>13:00-13.45 Lantern Workshop.</p><p>The link for pre-registration: https://link.webropolsurveys.com/EP/C7046848B5A499F0 </p><p><br></p><p>Klo 14:00-14.45 Lantern Workshop.</p><p>The link for pre-registration: https://link.webropolsurveys.com/EP/4A025721AC75B82E </p>" }, "provider_contact_info": null, "short_description": { "fi": "Lyhtytyöpajassa pääset askartelemaan perinteisiä intialaisia lyhtyjä.", "en": "In this lantern workshop, you will have the opportunity to craft traditional Indian lanterns." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2bb22ea/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi2bb22iy", "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:agggfz66hi/?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, "info_url": null, "description": 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" } ], "created_time": "2024-08-29T08:28:30.845986Z", "last_modified_time": "2024-10-01T11:02:29.310773Z", "date_published": null, "start_time": "2024-10-19T10:00:00Z", "end_time": "2024-10-19T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Diwali – Valon juhla: Lyhtytyöpaja ", "en": "Diwali – Festival of Lights: Lantern Workshop " }, "provider": { "fi": "Lippulaivan kirjasto, Espoonlahden kulttuurihanke, Espoon kulttuuritalo ja -palvelut, Suomi-Intia seura.", "en": "Children’s Cultural Center Aurora, Espoo’s cultural centers and services, The Finland-India Society." }, "info_url": { "fi": "https://www.espoo.fi/fi/kulttuuriespoo/diwali-valon-juhla", "en": "https://www.espoo.fi/en/cultureespoo/diwali-festival-lights" }, "description": { "fi": "<p>Lyhtytyöpajassa pääset askartelemaan perinteisiä intialaisia lyhtyjä, ja samalla saat ainutlaatuisen tilaisuuden tutustua intialaiseen kulttuuriin luovan tekemisen kautta. Työpaja sopii kaikille, iästä ja taitotasosta riippumatta.</p><p>Työpajassa luodaan yksityiskohtaisia lyhtyjä erilaisia tekniikoita käyttäen. Opettaja ohjaa sinua vaihe vaiheelta, ja voit valita, haluatko tehdä perinteisen vai modernin lyhdyn, jonka voit koristella helmillä, paljeteilla ja glitterillä, tehden siitä täysin uniikin. </p><p>Työpajan vetää Komal Agarwal, itseoppinut taiteilija ja käsityöharrastaja, jota kiinnostaa erilaisten ilmaisuvälineiden ja materiaalien tutkiminen. Hänen luonnoskirjansa ja kynänsä ovat aina mukana, valmiina vangitsemaan inspiroivat hetket. Komalin työpajoissaan pidetään hauskaa ja annetaan luovuuden virrata! </p><p><br></p><p>Työpajojen kieli on pääosin englanti.</p><p><br></p><p><strong>Työpajaan mahtuu 20 henkilöä. Tilaisuuteen voi varmistaa paikkansa ennakkovarauksella, joka sulkeutuu perjantaina 18.10. klo 12. Mikäli vapaita paikkoja jää, voit osallistua myös suoraan saapumalla ovelle</strong>.</p><p><br></p><p>Työpajat ovat osa Diwali – Valon juhla -tapahtumaa, jonka Espoon kulttuuritalot ja -palvelut järjestävät yhteistyössä Suomi-Intia seuran kanssa. Lue lisää tapahtumakokonaisuudesta täältä: https://www.espoo.fi/fi/kulttuuriespoo/diwali-valon-juhla</p><p><br></p><p>Työpajat järjestetään yhteistyössä Lippulaivan kirjaston ja Espoonlahden kulttuurihankkeen kanssa.</p><p><br></p><p>Diwali </p><p>Diwali on hindulainen juhla, jota vietetään laajasti Intiassa, Nepalissa ja muualla maailmassa lokakuun ja marraskuun välisenä aikana. Samalla vaihtuu hindulaisen kalenterin uusi vuosi. Diwali on valon, hyvyyden ja uusien alkujen juhla, jossa toivotaan hyvää terveyttä, vaurautta ja suojelua uudelle vuodelle. Juhla tuo mieleen suomalaisen joulun: ihmiset siivoavat ja koristelevat kotinsa, sytyttävät kynttilöitä, antavat lahjoja, syövät hyvin ja viettävät aikaa läheisten kanssa. Diwalin aikaan sytytetään öljylamppuja (diyas) ja kynttilöitä, koristellaan koti värikkäillä koristeilla, joita kutsutaan rangoleiksi, ja ammutaan ilotulitteita. Juhla yhdistyy myös antamisen iloon, hyvään mieleen ja muiden auttamiseen. Diwali tuo valoa pimeyteen! </p><p> </p><p>Lyhtytyöpajat </p><p>Lasten kulttuurikeskus Aurora </p><p>La 7.9.2024 </p><p>klo 12:00-12:45 Lyhtytyöpaja</p><p>klo 13:00-13:45 Lyhtytyöpaja</p><p> </p><p>Näyttelykeskus WeeGee </p><p>La 14.9.2024 </p><p>klo 13:00-13.45 Lyhtytyöpaja</p><p>Klo 14:00-14.45 Lyhtytyöpaja</p><p> </p><p>Lippulaivan kirjasto </p><p>La 19.10.2024 </p><p>klo 13:00-13.45 Lyhtytyöpaja</p><p>Klo 14:00-14.45 Lyhtytyöpaja</p><p> </p>", "en": "<p>In this lantern workshop, you will have the opportunity to craft traditional Indian lanterns while also getting a unique chance to explore Indian culture and traditions through creative activities. The workshop is suitable for everyone, regardless of age or skill level. </p><p>In the workshop, detailed lanterns will be created using various techniques. The instructor will guide you step by step, and you can choose to make either a traditional or a modern lantern, which you can decorate with beads, sequins, and glitter to make it truly unique. </p><p>The workshop is led by Komal Agarwal, a self-taught artist and craft enthusiast who is passionate about exploring different mediums and materials. Her sketchbook and pen are always with her, ready to capture inspiring moments. Komal’s workshops are all about having fun and letting creativity flow! </p><p><br></p><p>The language of the workshops is primarily English.</p><p><br></p><p><strong>The workshop has a capacity of 20 people. Secure your place by pre-booking, which closes on Friday 18 September at 12 pm. If free spots remain, you can request those by arriving at the workshop. </strong></p><p><br></p><p>The workshops are part of the Diwali – Valon juhla event organized by Espoo City Cultural Services in collaboration with Suomi-Intia-Seura a.k.a Finnish-Indian society. The full event programme: espoo.fi/diwali.</p><p><br></p><p>Diwali </p><p><br></p><p>Diwali is a Hindu festival widely celebrated in India, Nepal and around the world between October and November. It also marks the beginning of the new year in the Hindu calendar. Diwali is a festival of light, goodness and new beginnings, during which people wish for good health, prosperity and protection for the new year. The celebration is reminiscent of Christmas in Finland: people clean and decorate their homes, light candles, give gifts, enjoy good food, and spend time with loved ones. During Diwali, oil lamps (diyas) and candles are lit, homes are decorated with colorful ornaments known as rangolis, and fireworks are set off. The festival also emphasizes the joy of giving, spreading happiness, and helping others. Diwali brings light to the darkness! </p><p> </p><p>Workshop dates: </p><p><br></p><p>Children’s Cultural Center Aurora </p><p>Sat 7.9.2024 </p><p>12:00-12:45 Lantern Workshop </p><p>13:00-13:45 Lantern Workshop </p><p> </p><p>WeeGee Exhibition Centre </p><p>Sat 14.9.2024 </p><p>13:00-13:45 Lantern Workshop </p><p>14:00-14:45 Lantern Workshop </p><p><br></p><p>Lippulaiva Library </p><p>Sat 19.10.2024 </p><p>13:00-13:45 Lantern Workshop </p><p>14:00-14:45 Lantern Workshop </p>" }, "provider_contact_info": null, "short_description": { "fi": "Lyhtytyöpajassa pääset askartelemaan perinteisiä intialaisia lyhtyjä.", "en": "In this lantern workshop, you will have the opportunity to craft traditional Indian lanterns." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi2bb22iy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjeo57nui", "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:p1808/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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" } ], "created_time": "2024-10-01T07:07:41.617760Z", "last_modified_time": "2024-10-01T10:34:15.797930Z", "date_published": null, "start_time": "2024-10-17T11:00:00Z", "end_time": "2024-10-17T11:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "SYYSLOMA: Päistikka - musiikki-ilottelua lapsiperheille ", "en": "AUTUMN HOLIDAY: Päistikka - musical fun for families" }, "provider": null, "info_url": { "fi": "https://paistikka.fi/", "en": "https://paistikka.fi/" }, "description": { "fi": "<strong>Entressen kirjastolla torstaina 17.10. klo 14.00 </strong><p><br></p><p><strong>Päistikka-duon</strong> riemukkaassa konsertissa syöksytään seikkailuun sekä mielikuvitusmaailmaan. On aika tanssia robotti-diskossa tai vaikka ryhtyä hirviöhippaan! Musiikin ja tarinoiden täyttämässä show'ssa tarvitaan myös välillä yleisön apua. </p><p> </p><p><strong>Tuukka Martiskainen - laulu, ukulele, samplet</strong></p><p><strong>Erno Kettunen - kitara, trumpetti</strong></p><p><br></p><p> Päistikka on vuonna 2014 perustettu nelihenkinen lastenmusiikkiin suuntautunut yhtye. Teatteri- ja musiikkialan ammattilaisten muodostaman Päistikan musiikissa käsitellään paljon luontoa, ystävyyden voimaa, mielikuvitusmaailmaa, seikkailuja sekä ympärillämme tapahtuvia ilmiöitä. Musiikillisia vaikutteita yhtye on ammentanut eri vuosikymmenten rock-,pop-, folk-, sekä disko -maailmoista.</p><p> </p><p>Päistikka panostaa musiikillisen ilonpidon lisäksi myös esiintymishetkiin, ja tuo lavalle aina sopivasti interaktiivisuutta sekä tarinallisuutta. </p><p> </p><p>Parin kerran Vuoden lastenmusiikkiyhtyeeksikin ehdolla ollut Päistikka on julkaissut kaksi studio-albumia Päistikka (2015) sekä Lähtölaskenta (2020). Kolmas levy Elävä maailma julkaistaan marraskuussa 2024. Päistikka on luonut myös Ylen Pikku Kakkoselle kaksi audiosarjaa: Päistikka ja metsän olennot (2022) sekä Metsän olennot ja kimaltava suurmysteeri (2024).</p>", "en": "<p> The Päistikka duo's exhilarating concert will take you into a world of adventure and imagination. It's time to dance in a robot disco or play monstertag! The show is full of music and stories, sometimes with audience participation.</p><p><br></p><p> Tuukka Martiskainen - vocals, ukulele, samples</p><p> Erno Kettunen - guitar, trumpet</p><p> </p><p>Päistikka is a four-piece children's music oriented band founded in 2014. Made up of theatre and music professionals, Päistikka's music touches on nature, the power of friendship, imagination, adventure and phenomena happening around us. The band is influenced by decades of rock, pop, folk and disco.</p><p> In addition to musical entertainment, Päistikka also invests in performances and always brings a good amount of interactivity and storytelling to the stage.</p><p><br></p><p> Päistikka has been nominated for the Children's Music Band of the Year a couple of times and has released two studio albums Päistikka (2015) and Lähtölaskenta (2020). Their third album Elävä maailma will be released November 2024. Päistikka has also created two audio series for Yle's Pikku Kakkonen: Päistikka ja metsän olennot (2022) and Metsän olennot ja kimaltava suurmysteeri (2024).</p>" }, "provider_contact_info": null, "short_description": { "fi": "Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun sekä mielikuvitusmaailmaan.", "en": " The Päistikka duo's exhilarating concert will take you into a world of adventure and imagination." }, "location_extra_info": { "fi": "lastenosasto " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57nui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64639", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 € / 8 €", "en": "9 € / 8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/", "en": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152641, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-01T10:16:55.884297Z", "last_modified_time": "2024-10-01T10:16:55.884309Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758803.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152641/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-01T10:16:55.873611Z", "last_modified_time": "2024-10-01T10:16:55.913263Z", "date_published": null, "start_time": "2024-10-15T16: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, "name": { "fi": "The Casteless Collective - Prologue (7) – Mama Events -elokuvanäytös", "en": "The Casteless Collective - Prologue (7) – Mama Events presents" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78FC48E769B73E47F0AB5A8D7D794D47/The_Casteless_Collective_-_Prologue_7_", "en": "http://www.malmitalo.fi/en/events/event/78FC48E769B73E47F0AB5A8D7D794D47/The_Casteless_Collective_-_Prologue_7_" }, "description": { "fi": "<p>Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.</p><p>Elokuvantekijä Pa.Ranjithin kokoaman kastittoman kollektiivin musiikki sisältää Gaanaa, joka on työväenluokan kansanmuoto, joka sai alkunsa hautajaisista. Ne ovat lauluja, joita lauletaan kuolleiden ihmisten vapauttamiseksi sorretusta elämästä.</p><p>Elokuvan alkuperä: Intia<br>Kieli: tamili <br>Tekstitys: Englanti<br>Kesto 1 tunti, 30min</p>", "en": "<p>The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019.</p><p>Brought together by filmmaker Pa.Ranjith, the music of the casteless collective features Gaana, a working class folk form which originated at funerals, with songs sung to liberate deceased people from a life of oppression.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Country: India<br>Language: Tamil<br>Subtitle: English<br>Duration: 1h30min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.", "en": "The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64639/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64637", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 € / 8 €", "en": "9 € / 8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/", "en": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152640, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-01T10:16:55.746335Z", "last_modified_time": "2024-10-01T10:16:55.746348Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758802.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152640/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-01T10:16:55.725872Z", "last_modified_time": "2024-10-01T10:16:55.775373Z", "date_published": null, "start_time": "2024-10-15T14:50: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, "name": { "fi": "Face Cover (7) – Mama events -elokuvanäytös", "en": "Face Cover (7) – Mama events presents" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4488DDB8352FB8FFE810FB0FA1E3266F/Face_Cover_7_", "en": "http://www.malmitalo.fi/en/events/event/4488DDB8352FB8FFE810FB0FA1E3266F/Face_Cover_7_" }, "description": { "fi": "<p>Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.</p><p>Elokuva seuraa Ashifan elämää Kattankudyssa, Itä-Sri Lankassa, kun hän navigoi häntä muokkaavissa monimutkaisissa sosiaalisissa voimissa. Elokuva kertoo kaupungin tarinan naisen tarinan näkökulmasta.</p><p>Tämän elokuvan on tuonut Suomeen Mama Events Oy yhteistyössä Culture Reelsin ja Film South Asian kanssa.</p><p>Elokuvan alkuperä: Sri Lanka <br>Kieli: tamili <br>Tekstitys: Englanti<br>Ikäraja: 7<br>Kesto 1h 10min</p>", "en": "<p>Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories.</p><p>The film tells the story of the town as a woman’s tale.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Origin of the movie: Sri Lanka<br>Language: Tamil<br>Subtitles: English<br>Duration: 1h 10min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.", "en": "Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64637/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64287", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151871, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T14:14:07.637205Z", "last_modified_time": "2024-07-25T14:14:07.637220Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751033.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151871/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-25T14:14:07.610226Z", "last_modified_time": "2024-10-01T10:16:55.615371Z", "date_published": null, "start_time": "2024-10-15T10:00:00Z", "end_time": "2024-10-15T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ryhmä Hau: Mahtielokuva (7) – Syyslomaleffa", "sv": "Paw Patrol: Storfilmen – Höstlovsfilm", "en": "PAW Patrol: The Mighty Movie (7) – Autumn holiday movie" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1DBF717385D55ECFE0C66EA4F25C7FA1/Ryhma_Hau_Mahtielokuva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1DBF717385D55ECFE0C66EA4F25C7FA1/Paw_Patrol_Storfilmen_", "en": "http://www.malmitalo.fi/en/events/event/1DBF717385D55ECFE0C66EA4F25C7FA1/PAW_Patrol_The_Mighty_Movie_7_" }, "description": { "fi": "<p>Kun maaginen meteoriitti iskeytyy Jännälään, se antaa Ryhmä Haun pennuille supervoimat, jotka muuttavat ne MAHTIPENNUIKSI!</p><p>Ryhmän pienimmälle jäsenelle, Kajalle, uudet voimat ovat toteen käynyt unelma. Asiat ottavat kuitenkin ikävän käänteen, kun pentujen arkkivihollinen, Hanttinen, vapautuu vankilasta ja lyöttäytyy yhteen hullun tiedemiehen kanssa. Kaksikon aikeena on varastaa supervoimat itselleen. Jännälän kohtalon ollessa vaakalaudalla Mahtipentujen on pysäytettävä viholliskaksikko ennen kuin on liian myöhäistä. Ja Kajan on opittava, että kaikkein pieninkin pentu voi saada aikaan suuria.</p><p>Ennen elokuvan alkua esitetään Dora ja ihmeelliset olennot -lyhytelokuva, jonka kesto on noin 5 minuuttia.</p><p>Ikäraja 7<br>Kesto 93 min<br>Puhuttu suomeksi<br>Malmisali, vapaa pääsy!</p>", "sv": "<p>När en magisk meteorit kraschlandar i Äventyrsstaden, får Paw Patrol-valparna superkrafter och förvandlas till mäktiga valpar.</p><p>För Skye, den minsta medlemmen i gruppen, är hennes nya krafter en dröm som har blivit sann. Men allt förändras när valparnas ärkefiende, borgmästare Överdängare, rymmer från fängelset och slår sig ihop med en galen vetenskapsman för att stjäla superkrafterna. Äventyrsstadens öde står på spel. De mäktiga valparna måste stoppa superskurkarna innan det är för sent, och Skye kommer att få lära sig att även en liten valp kan göra stor skillnad.</p>", "en": "<p>When a magical meteor crash lands in Adventure City, it gives the PAW Patrol pups superpowers, transforming them into The MIGHTY PUPS!</p><p>For Skye, the smallest member of the team, her new powers are a dream come true. But things take a turn for the worse when the pups' archrival Humdinger breaks out of jail and teams up with a mad scientist to steal the superpowers for the two villains. With the fate of Adventure City hanging in the balance, the Mighty Pups have to stop the supervillains before it's too late, and Skye will need to learn that even the smallest pup can make the biggest difference.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kun maaginen meteoriitti iskeytyy Jännälään, se antaa Ryhmä Haun pennuille supervoimat, jotka muuttavat ne MAHTIPENNUIKSI!", "sv": "När en magisk meteorit kraschlandar i Äventyrsstaden, får Paw Patrol-valparna superkrafter och förvandlas till mäktiga valpar.", "en": "When a magical meteor crash lands in Adventure City, it gives the PAW Patrol pups superpowers, transforming them into The MIGHTY PUPS!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64287/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64638", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 € / 8 €", "en": "9 € / 8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/", "en": "https://www.lippu.fi/artist/malmitalo/mama-events-the-casteless-collective-prologue-3740578/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152639, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-01T10:16:54.869003Z", "last_modified_time": "2024-10-01T10:16:54.869015Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758799.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152639/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-01T10:16:54.855981Z", "last_modified_time": "2024-10-01T10:16:54.897035Z", "date_published": null, "start_time": "2024-10-10T16: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, "name": { "fi": "The Casteless Collective - Prologue (7) – Mama Events -elokuvanäytös", "en": "The Casteless Collective - Prologue (7) – Mama Events presents" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/32A3CDBF8D30B9262681386B1D58DE1A/The_Casteless_Collective_-_Prologue_7_", "en": "http://www.malmitalo.fi/en/events/event/32A3CDBF8D30B9262681386B1D58DE1A/The_Casteless_Collective_-_Prologue_7_" }, "description": { "fi": "<p>Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.</p><p>Elokuvantekijä Pa.Ranjithin kokoaman kastittoman kollektiivin musiikki sisältää Gaanaa, joka on työväenluokan kansanmuoto, joka sai alkunsa hautajaisista. Ne ovat lauluja, joita lauletaan kuolleiden ihmisten vapauttamiseksi sorretusta elämästä.</p><p>Elokuvan alkuperä: Intia<br>Kieli: tamili <br>Tekstitys: Englanti<br>Kesto 1 tunti, 30min</p>", "en": "<p>The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019.</p><p>Brought together by filmmaker Pa.Ranjith, the music of the casteless collective features Gaana, a working class folk form which originated at funerals, with songs sung to liberate deceased people from a life of oppression.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Country: India<br>Language: Tamil<br>Subtitle: English<br>Duration: 1h30min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Dokumentti kertoo Intian vallankumouksellisimmasta poliittisesta musiikkijulkaisusta The Casteless Collectivesta sen perustamisesta debyyttialbuminsa ”Magizhchi” (Joy) julkaisuun vuonna 2019.", "en": "The documentary chronicles the story of India’s most revolutionary political musical outfit The Casteless Collective from its inception through the release of its debut album “Magizhchi” (Joy) in 2019." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64638/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64636", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 € / 8 €", "en": "9 € / 8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/", "en": "https://www.lippu.fi/artist/malmitalo/mama-events-face-cover-3740573/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152638, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-01T10:16:54.633981Z", "last_modified_time": "2024-10-01T10:16:54.633994Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758798.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152638/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-01T10:16:54.598938Z", "last_modified_time": "2024-10-01T10:16:54.690753Z", "date_published": null, "start_time": "2024-10-10T14:50: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, "name": { "fi": "Face Cover (7) – Mama events -elokuvanäytös", "en": "Face Cover (7) – Mama events presents" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BC88A547543F6E6448744DEDC57C8F5/Face_Cover_7_", "en": "http://www.malmitalo.fi/en/events/event/6BC88A547543F6E6448744DEDC57C8F5/Face_Cover_7_" }, "description": { "fi": "<p>Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.</p><p>Elokuva seuraa Ashifan elämää Kattankudyssa, Itä-Sri Lankassa, kun hän navigoi häntä muokkaavissa monimutkaisissa sosiaalisissa voimissa. Elokuva kertoo kaupungin tarinan naisen tarinan näkökulmasta.</p><p>Tämän elokuvan on tuonut Suomeen Mama Events Oy yhteistyössä Culture Reelsin ja Film South Asian kanssa.</p><p>Elokuvan alkuperä: Sri Lanka <br>Kieli: tamili <br>Tekstitys: Englanti<br>Ikäraja: 7<br>Kesto 1h 10min</p>", "en": "<p>Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories.</p><p>The film tells the story of the town as a woman’s tale.</p><p>This movie is brought to by Mama Events Oy in collaboration with Culture Reels and Film South Asia.</p><p>Origin of the movie: Sri Lanka<br>Language: Tamil<br>Subtitles: English<br>Duration: 1h 10min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Elokuvan lähtöasetelmana on Sri Lankassa huhtikuussa 2019 tapahtuneet tuhoisat ISISin inspiroimat pääsiäissunnuntain pommi-iskut kirkkoihin ja hotelleihin.", "en": "Taking the cataclysmic Easter Sunday Bombings of churches and hotels in April 2019 by ISIS inspired Islamists in Sri Lanka as the point of departure, the film follows the life of Ashifa in Kattankudy, in Eastern Sri Lanka, as she navigates the complex social forces shaping her and other women’s stories." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64636/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjeloknqe", "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:p2149/?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, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjelokncq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeloknhu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeloknma/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-30T11:35:17.704424Z", "last_modified_time": "2024-10-01T08:43:11.702940Z", "date_published": null, "start_time": "2024-10-08T13:00:00Z", "end_time": "2024-12-03T16: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, "name": { "fi": "Paja tutuksi kaikille", "sv": "Verkstad för alla", "en": "Makerspace for all" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tervetuloa tutustumaan 3D-tulostimeen ja vinyylileikkuriin Tapiolan kirjaston Pajaan.</p><ul><li>ti 8.10. 16-18 (ei vinyylileikkuria)</li><li>ti 5.11. 16-18</li><li>ti 3.12. 16-18</li></ul><p>Opettelemme tekemään 3D-tulosteen sekä käyttämään vinyylileikkuria ja lämpöprässiä. Ota oma puuvillainen vaate tms. mukaan, jos haluat painaa siihen kuvan tai tekstin. Vaihtoehtoisesti voit tehdä tarran.</p><p>Tulostus- ja vinyylimateriaalin tarjoaa kirjasto.</p><p>Ohjausta tarjotaan suomeksi ja englanniksi.</p>", "sv": "<p>Välkommen att lära dig hur du använder en 3D-skrivare och en vinylskärare.</p><p>Evenemanget organiseras 3 gånger under hösten: </p><ul><li>8.10. 16-18</li><li>5.11. 16-18</li><li>3.12. 16-18</li></ul><p>Biblioteket bjuder på material som behövs.</p>", "en": "<p>Welcome to learn how to use a 3D printer and a vinyl cutter.</p><p>During the autumn the event will be organized 3 times:</p><ul><li>8.10. 16-18</li><li>5.11. 16-18</li><li>3.12. 16-18</li></ul><p>The library will provide the necessary materials.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa tutustumaan 3D-tulostimeen ja vinyylileikkuriin Tapiolan kirjaston Pajaan.", "sv": "Välkommen att lära dig hur du använder en 3D-skrivare och en vinylskärare.", "en": "Welcome to learn how to use a 3D printer and a vinyl cutter." }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeloknqe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63639", "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: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3668996", "sv": "https://www.lippu.fi/eventseries/name-3668996", "en": "https://www.lippu.fi/eventseries/name-3668996" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151943, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-29T13:13:42.802928Z", "last_modified_time": "2024-07-29T13:13:42.802943Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751862.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151943/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-29T13:13:42.773331Z", "last_modified_time": "2024-10-01T08:14:51.806416Z", "date_published": null, "start_time": "2024-10-01T11: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, "name": { "fi": "You Resemble Me (K-18) – Kino Caisa", "sv": "You Resemble Me (F18) – Kino Caisa", "en": "You Resemble Me (18+) – Kino Caisa" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/664D56AF1856D69ED405004127A3952B/You_Resemble_Me_K-18_", "sv": "http://www.caisa.fi/sv/evenemang/event/664D56AF1856D69ED405004127A3952B/You_Resemble_Me_F18_", "en": "http://www.caisa.fi/en/events/event/664D56AF1856D69ED405004127A3952B/You_Resemble_Me_18_" }, "description": { "fi": "<p>Tarina pariisilaislähiössä kasvaneesta kahdesta sisaresta, jossa kulttuurien ja sukupolvien väliset traumat nousevat pintaan.</p><p>Kun sisarukset ovat joutuneet erilleen, vanhempi sisar Hasna kipuilee identiteettiään etsien ja päätyy koko maailmaa järisyttävään ratkaisuun. Ohjaaja Dina Amer on tarttunut synkän ajankohtaiseen aiheeseen ja availee sitä tiivistunnelmaisessa tarinassa, jota teemoittavat perhe, rakkaus, sisaruus ja yhteenkuuluvuus.</p><p>You Resemble Me<br>Dina Amer | USA, Ranska, Egypti | 2022 | 91’ <br>Kielet: arabia, ranska <br>Tekstitys: englanti</p><p><b>Kino Caisa</b> on Caisan oma leffateatteri! Valkokankaallamme nähdään huolellisesti valikoituja elokuvia, jotka tarkastelevat ihmisyyden moninaisuutta eri näkökulmista.</p><p>Elokuvat kertovat tarinoita ihmisistä, joita ei tavallisesti nähdä valokeilassa – tai niiden tekijät kuuluvat itsekin johonkin vähemmistöön. Edustettuina ovat niin seksuaali- ja sukupuolivähemmistöt, vammaiset, neuroepätyypilliset ihmiset kuin etniset vähemmistötkin.</p><p>Inkluusion ja moninaisuuden ohella Kino Caisan leffoja yhdistää taiteellinen kunnianhimo ja korkeatasoisuus. Valkokankaan täyttävät tarinat tempaavat mukaansa, herättävät ajatuksia, koskettavat ja lisäävät empatiaa ja ymmärrystä kanssaihmisiä kohtaan.</p><p>Leffanäytöksiä järjestetään joka tiistai kaksi: kello 14 ja 18. Luvassa on myös elokuvatapahtumia, joista lisätietoja myöhemmin.</p><p>Elokuvien kieli on englanti, joko puhuttuna tai tekstimuodossa.<br>Ikäraja: K-18.</p>", "sv": "<p>Kulturell och generationsöverskridande trauma väller fram i den här berättelsen om två systrar i utkanten av Paris.</p><p>När syskonen splittras kämpar den äldre systern, Hasna, med att hitta sin identitet, vilket leder till ett val som chockerar världen. Regissören Dina Amer behandlar ett av de mörkaste temana i vår tid och dekonstruerar det i en intim berättelse om familjer, kärlek, systerskap och samhörighet.</p><p>You Resemble Me<br>Dina Amer | U.S., Frankrike, Egypten| 2022 | 91’ <br>Språk: arabiska, franska <br>Textning: engelska</p><p><b>Kino Caisa</b> är Caisas egen filmteater! Varje tisdag ser vi noggrant utvalda filmer på vår filmduk. Filmerna tillsammans med sina skapare och berättelser granskar och visar den mänskliga mångfalden på olika sätt.</p><p>Filmvisningar sker varje tisdag klockan 14 och 18. Det kommer även att ordnas filmevenemang, om vilka närmare information ges separat.</p><p>Filmerna är på engelska eller textade på engelska.</p><p>Filmerna har en åldersgräns på 18.</p>", "en": "<p>Cultural and intergenerational trauma erupt in this story about two sisters on the outskirts of Paris.</p><p>After the siblings are torn apart, the eldest, Hasna, struggles to find her identity, leading to a choice that shocks the world. Director Dina Amer takes on one of the darkest issues of our time and deconstructs it in an intimate story about family, love, sisterhood, and belonging.</p><p>You Resemble Me<br>Dina Amer | United States, France, Egypt | 2022 | 91’ <br>Languages: Arabic, French <br>Subtitles: English</p><p><b>Kino Caisa</b> organizes a series of carefully programmed screenings to impulse film as a significant instrument for cultural stimulation and social cohesion.</p><p>Kino Caisa promotes cinematic diversity with a varied program to activate Helsinki’s cultural practices and identity. Kino Caisa is a communal experience, a central player in social development, and a clear indicator of quality life for the community.</p><p>Movies are shown every Tuesday at 2 p.m. and 6 p.m. There will also be movie events, which will be announced in more detail separately.</p><p>The movies are either in English or subtitled in English. Age limit 18.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tarina pariisilaislähiössä kasvaneesta kahdesta sisaresta, jossa kulttuurien ja sukupolvien väliset traumat nousevat pintaan.", "sv": "Kulturell och generationsöverskridande trauma väller fram i den här berättelsen om två systrar i utkanten av Paris.", "en": "Cultural and intergenerational trauma erupt in this story about two sisters on the outskirts of Paris." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63639/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi5mhloxe", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-09T08:45:56.116213Z", "last_modified_time": "2024-10-01T07:35:29.480384Z", "date_published": null, "start_time": "2024-10-14T14:30:00Z", "end_time": "2024-10-14T14:50: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, "name": { "fi": "SYYSLOMA: Syyskeiju ja Menninkäinen ", "sv": "HÖSTLOV: Syyskeiju ja Menninkäinen ", "en": "FALL BREAK: Syyskeiju ja Menninkäinen " }, "provider": null, "info_url": null, "description": { "fi": "<p>Syyskeiju ja Menninkäinen on kuvitteelliseen taikametsään sijoittuva fantasiasatu.</p><p>Teoksen keoreografiasta ja esiintymisestä vastaavat Välikoski Kantola Co:n tanssitaiteilijat Ville Välikoski ja Katriina Kantola.</p><p>Syyskeiju ja Menninkäinen -esitys on yllättävä ja raikas tanssitaiteellinen tervehdys arjen keskellä. Teos tarkastelee kuinka kahdesta eri maailmasta tulevaa olentoa, Syyskeiju ja Menninkäinen, voivat löytää yhteisen kielen ja tavan kommunikoida keskenään. Erilaisuus voi aiheuttaa kohtaamattomuutta ja pelkoa sekä johtaa vetäytymiseen ja sulkeutumiseen. Kuinka löytää suvaitsevaisuutta ja rohkeutta kohdata omat pelot ja tuntematon? Teos ehdottaa avoimuuden ja kuuntelun mahdollisuutta uutta kohdatessa.</p><p>Esityksessä kuullaan kanteletaiteilija Hanna Ryynäsen musiikkia hänen Taite-albumiltaan. Kantelemusiikki luo yhdessä tanssijoiden hahmojen kanssa esitykseen salaperäisen taikametsän. Esitys päättyy yhteiseen tanssiin Syyskeijun ja Menninkäisen kanssa. Katsojat voivat liittyä mukaan yhteiseen tanssiin tai seurata sitä etäältä.</p><p><br></p><p>Esitys ei sisällä puhetta vaan tarina kerrotaan tanssin, liikkeen ja musiikin keinoin. Teos on suunnattu kaikenikäiselle ja -kieliselle yleisölle.</p><p><br></p><p>Koreografia ja esiintyminen:</p><p>Välikoski Kantola Co / Ville Välikoski ja Katriina Kantola</p><p>Tuotanto: Välikoski Kantola Co ja Physical Opera</p><p>Musiikki: Hanna Ryynänen Taite-albumi</p><p>Esityskiertueen tukija: Espoon kaupunki</p><p>Esityksen kesto: 20 minuuttia</p><p><br></p><p>____________________________________________________________</p><p><br></p><p>Lisätiedot:</p><p><br></p><p>Katriina Kantola, tanssitaiteilija</p><p>katriina.kantola@gmail.com / www.katriinakantola.com</p><p><br></p><p>Ville Välikoski, tanssitaiteilija </p><p>ville.valikoski@gmail.com / www.villevalikoski.com</p>", "sv": "<p>The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog. </p><p><br></p><p>Verket är koreograferat och framfört av Välikoski Kantola Co:s danskonstnärer Ville Välikoski och Katriina Kantola. </p><p><br></p><p>Föreställningen innehåller inget tal, utan historien berättas med hjälp av dans, rörelse och musik. Verket riktar sig till en publik i alla åldrar och med olika språk. </p><p><br></p><p>Koreografi och framförande: </p><p>Välikoski Kantola Co / Ville Välikoski och Katriina Kantola </p><p>Produktion: Välikoski Kantola Co och Physical Opera </p><p>Musik: Hanna Ryynänen Konstalbum</p><p>Turnésponsor: Esbo stad </p><p><br></p><p>Föreställningens längd: 20 minuter </p><p>Evenemanget är öppet för alla och avgiftsfritt. </p>", "en": "<p>The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest. </p><p>The work is choreographed and performed by Välikoski Kantola Co's dance artists Ville Välikoski and Katriina Kantola. </p><p>The performance does not include speech, but the story is told through dance, movement and music. The work is aimed at audiences of all ages and languages. </p><p><br></p><p>Choreography and performance: </p><p>Välikoski Kantola Co / Ville Välikoski and Katriina Kantola </p><p>Production by Välikoski Kantola Co and Physical Opera </p><p>Music: Hanna Ryynänen Art album</p><p>Tour sponsor: the City of Espoo </p><p><br></p><p>Duration of the performance: 20 minutes </p><p>The event is open to everyone and free of charge.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Syyskeiju ja Menninkäinen on kuvitteelliseen taikametsään sijoittuva fantasiasatu. ", "sv": "The Autumn Fairy and the Munchkin är en fantasy-saga som utspelar sig i en fiktiv magisk skog. ", "en": "The Autumn Fairy and the Munchkin is a fantasy fairy tale set in a fictional magical forest. " }, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5mhloxe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63758", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "33,50 € / 31,50 €", "sv": "33,50 € / 31,50 €", "en": "33,50 € / 31,50 €" }, "info_url": { "fi": "https://www.lippu.fi/event/amadeus-lundberg-romanssi-malmitalo-18646991/#tab=", "sv": "https://www.lippu.fi/event/amadeus-lundberg-romanssi-malmitalo-18646991/#tab=", "en": "https://www.lippu.fi/event/amadeus-lundberg-romanssi-malmitalo-18646991/#tab=" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151862, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T13:13:24.377631Z", "last_modified_time": "2024-07-25T13:13:24.377649Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752468.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151862/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T13:13:24.357410Z", "last_modified_time": "2024-10-01T07:34:12.605771Z", "date_published": null, "start_time": "2024-10-02T15: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, "name": { "fi": "Amadeus Lundberg: Romanssi", "sv": "Amadeus Lundberg: Romanssi-konsert", "en": "Amadeus Lundberg: Romanssi concert" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A60B26B2853596B14B9AB2369B18190F/Amadeus_Lundberg_Romanssi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A60B26B2853596B14B9AB2369B18190F/Amadeus_Lundberg_Romanssi-konsert", "en": "http://www.malmitalo.fi/en/events/event/A60B26B2853596B14B9AB2369B18190F/Amadeus_Lundberg_Romanssi_concert" }, "description": { "fi": "<p>Amadeus Lundberg, tangokuningas vuodelta 2009, on suomalaisen kevyen musiikin kestosuosikki.</p><p>Vuonna 2024 tulee kuluneeksi 15 vuotta siitä, kun Amadeus Lundberg kruunattiin tangokuninkaaksi Tangomarkkinoilla. Juhlavuoden kunniaksi järjestetään Romanssi-konserttikiertue, jossa Lundberg vie kuulijat herkkään tunnelmaan upeilla tulkinnoilla.</p><p>Amadeus Lundberg esittää kauneimpia rakkauslauluja sekä monia ikivihreitä suomalaisia ja kansainvälisiä sävelmiä, kuten Romanssi, Solamente una Vez ja Con Te Partirò.</p><p>”Romantiikka on lähellä sydäntäni ja haluan tarjota yleisölle kauniita hetkiä rakkauden äärellä. Konsertin päätyttyä huomaat, että vaikka laulu hetkeksi vaikenee, tunteet jäävät elämään”, Lundberg sanoo.</p><p>Amadeus Lundberg on julkaissut uransa aikana kaikkiaan viisi sooloalbumia. Lundbergin ohjelmistoon kuuluu erityisen paljon vanhojen suomalaisten mestarien lauluja.</p><p>Tässä tunnelmallisessa ja intiimissä konsertissa Amadeus Lundbergia säestävät viulisti Lotta Marien sekä harmonikkataiteilija ja kosketinsoittaja Samuli Jokinen.</p><p>Kesto: 2 t, sis. väliajan 20 min</p>", "sv": "<p>Tangokunden från år 2009 Amadeus Lundberg är en ständig favorit inom den finländska underhållningsmusiken.</p><p>År 2024 blir det 15 år sedan Amadeus Lundberg kröntes till tangokung på Tangomarknaden. För att fira jubileet anordnas konsertturnén Romanssi, där Lundberg sveper med sig publiken i en känslofylld stämning med sina lysnade tolkningar.</p><p>Amadeus Lundberg framför de vackraste kärlekssångerna och många finländska och internationella evergreens, såsom Romanssi, Solamente una Vez och Con Te Partirò.</p><p>“Romantik ligger mig varmt om hjärtat och jag vill erbjuda publiken vackra ögonblick av kärlek. Efter konserten inser man att även om sången tystnar för en stund, så lever känslorna kvar”, säger Lundberg.</p><p>Amadeus Lundberg har släppt totalt fem soloalbum under sin karriär. Lundbergs repertoar är särskilt rik på sånger av de gamla finländska mästarna.</p><p>I denna stämningsfulla och intima konsert ackompanjeras Amadeus Lundberg av violinisten Lotta Marien och dragspelskonstnären och keyboardisten Samuli Jokinen.</p>", "en": "<p>Amadeus Lundberg, the tango king of 2009, is a lifelong favourite in Finnish light music.</p><p>In 2024, it will be 15 years since Amadeus Lundberg was crowned tango king at the Tangomarkkinat festival. To celebrate the anniversary, he is holding a concert tour called Romanssi, in which Lundberg will lull the listeners into a sensitive atmosphere with his stunning interpretations.</p><p>Amadeus Lundberg performs the most beautiful love songs, as well as many evergreen Finnish and foreign songs, such as Romanssi, Solamente una Vez and Con Te Partirò.</p><p>“Romance is close to my heart and I want to offer the audience beautiful moments of love. At the end of the concert, you will notice that even if the song is quiet for a while, the emotions will live on,” Lundberg says.</p><p>During his career, Amadeus Lundberg has released five solo albums. Lundberg's repertoire includes an especially large amount of songs by old Finnish masters.</p><p>In this atmospheric and intimate concert, Amadeus Lundberg is accompanied by violinist Lotta Marie and accordionist and keyboardist Samuli Jokinen.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Amadeus Lundberg, tangokuningas vuodelta 2009, on suomalaisen kevyen musiikin kestosuosikki.", "sv": "Tangokunden från år 2009 Amadeus Lundberg är en ständig favorit inom den finländska underhållningsmusiken.", "en": "Amadeus Lundberg, the tango king of 2009, is a lifelong favourite in Finnish light music." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63758/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjeo57obi", "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:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": 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:agggfz7azy/?format=api" } ], "created_time": "2024-10-01T07:28:10.273644Z", "last_modified_time": "2024-10-01T07:28:10.273666Z", "date_published": null, "start_time": "2024-10-16T10:00:00Z", "end_time": "2024-10-16T12: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, "name": { "fi": "SYYSLOMA: Biljarditurnaus ", "sv": "HÖSTLOV: Biljardturnering", "en": "FALL BREAK: Billiards Tournament" }, "provider": null, "info_url": null, "description": { "fi": "<p>SYYSLOMA: Biljarditurnaus </p><p>Kibessä syyslomaviikon keskiviikkona 16.10. klo 13 alkaen </p><p>Osallistujamäärä max 16</p>", "sv": "<p>HÖSTLOV: Biljardturnering</p><p>I Kibe på höstlovsveckans onsdag den 16 oktober från kl. 13</p><p>Max 16 deltagare</p>", "en": "<p>FALL BREAK: Billiards Tournament</p><p>In Kibe on Wednesday of autumn break week, October 16th, starting at 1:00 PM</p><p>Maximum of 16 participants</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kibessä syyslomaviikon keskiviikkona 16.10. klo 13 alkaen \nOsallistujamäärä max 16", "sv": "I Kibe på höstlovsveckans onsdag den 16 oktober från kl. 13\nMax 16 deltagare", "en": "In Kibe on Wednesday of autumn break week, October 16th, starting at 1:00 PM\nMaximum of 16 participants" }, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57obi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjeo57pmq", "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:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1650/?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:p4354/?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, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57ova/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57oze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57o5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57pa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57pey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57piu/?format=api" } ], "images": [ { "id": 150413, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-13T12:00:08.828575Z", "last_modified_time": "2024-03-13T12:00:08.828600Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Suomenkielinen_satuhetki.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirrettyjä hahmoja valokuvassa avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150413/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-10-01T06:23:04.043641Z", "last_modified_time": "2024-10-01T06:23:04.043664Z", "date_published": null, "start_time": "2024-10-29T07:30:00Z", "end_time": "2024-12-18T15:30: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, "name": { "fi": "Suomenkielinen satuhetki", "sv": "Sagostund på finska", "en": "Story time in Finnish" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>Suomenkieliset satuhetket</p><p>Tiistai 24.9. klo 9.30 </p><p>Keskiviikko 25.9. klo 17</p><p>Tiistai 29.10. klo 9.30</p><p>Keskiviikko 30.10. klo 17</p><p>Tiistai 26.11. klo 9.30</p><p>Keskiviikko 27.11. klo 17</p><p>Tiistai 17.12. klo 9.30</p><p>Keskiviikko 18.12. klo 17</p>", "sv": "<p>Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn. Du är varmt välkommen!</p><p>Sagoevenemang på finska</p><p>Tisdag 24.9. kl. 9.30 </p><p>Onsdag 25.9. kl. 17</p><p>Tisdag 29.10. kl. 9.30</p><p>Onsdag 30.10. kl. 17</p><p>Tisdag 26.11. kl. 9.30</p><p>Onsdag 27.11. kl. 17</p><p>Tisdag 17.12. kl. 9.30</p><p>Onsdag 18.12. kl. 17</p>", "en": "<p>Story time in Finnish</p><p>Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children. You are warmly welcome!</p><p>Fairy tale events in Finnish</p><p>Tuesday 24.9. at 9.30 </p><p>Wednesday 25.9. at 17</p><p>Tuesday 29.10. at 9.30</p><p>Wednesday 30.10. at 17</p><p>Tuesday 26.11. at 9.30</p><p>Wednesday 27.11. at 17</p><p>Tuesday 17.12. at 9.30</p><p>Wednesday 18.12. at 17</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn. ", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57pmq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjeo57qia", "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:p1947/?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:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57pqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57pui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57pyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57p4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57p74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57qea/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-01T06:00:25.672102Z", "last_modified_time": "2024-10-01T06:17:33.294835Z", "date_published": null, "start_time": "2024-10-30T11:00:00Z", "end_time": "2024-12-18T12: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, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Joogaa ei järjestetä 6.11. ja 20.11.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Det finns inga yogaklasser den 11 November och 20 November</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>There are no yoga classes on 11th of November and 20th of November.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa. ", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjeo57qia/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19291, "next": "