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=147
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=148", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=146" }, "data": [ { "id": "espoo_le:agjsjyt6f4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt33u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt4ai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt4eq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt4iu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt4ny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt4sa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt4wi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt42u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt47q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt5dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt5ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3tzgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3tzku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3tzo4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3tzta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3tzxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj5l3tz3q/?format=api" } ], "images": [ { "id": 150444, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T10:01:16.416451Z", "last_modified_time": "2024-03-15T10:01:16.416479Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/SuomenPakolaisapu.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä pelaa korttia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150444/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-13T08:43:19.474747Z", "last_modified_time": "2024-11-13T08:43:19.474768Z", "date_published": null, "start_time": "2025-01-27T15:00:00Z", "end_time": "2025-05-26T15: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": "Puhutaan suomea", "sv": "Vi talar finska", "en": "Let's speak Finnish" }, "provider": { "fi": "Suomen pakolaisapu" }, "short_description": { "fi": "Puhutaan! - ryhmässä keskustelemme suomeksi ja harjoittelemme puhekieltä yhdessä.", "sv": "I gruppen diskuterar vi på finska och tränar talat språk tillsammans.", "en": "In this group we discuss in finnish and practice language together." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Haluatko puhua paremmin suomea?</p><p>Puhutaan! - ryhmässä keskustelemme suomeksi ja harjoittelemme puhekieltä yhdessä.</p><p>Puheenaiheina voi olla vaikkapa uutiset, työnhaku tai eri kulttuurit. Päätämme yhdessä kiinnostavat aiheet.</p><p>Tervetuloa mukaan!</p><p>Kysy lisää: vapaaehtoiset@pakolaisapu.fi</p>", "sv": "<p>Vill du prata finska bättre?</p><p>I gruppen diskuterar vi på finska och tränar talat språk tillsammans.</p><p>Ämnena kan till exempel vara nyheter, jobbsökande eller olika kulturer. Vi bestämmer tillsammans vilka ämnen som är intressanta.</p><p>Välkommen ombord!</p><p>Be om mer information: vapaaehtoiset@pakolaisapu.fi</p>", "en": "<p>Would you like to speak better finnish?</p><p>In this group we discuss in finnish and practice language together. We talk about news, job hunting and different cultures. We deside together the topics.</p><p>Welcome!</p><p>More information: vapaaehtoiset@pakolaisapu.fi</p>" }, "location_extra_info": { "fi": "Akseli sali", "sv": "Akseli salen", "en": "Akseli hall" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyt6f4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjsbtjtti", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-12T13:41:32.336467Z", "last_modified_time": "2024-11-12T13:41:32.336564Z", "date_published": null, "start_time": "2024-11-29T14:00:00Z", "end_time": "2024-11-29T15: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": "\"The Magic of Dance\" -kiertue", "sv": "\"The Magic of dance\" -turnè", "en": "\"The Magic of Dance\" -tour" }, "provider": null, "short_description": { "fi": "Tervetuloa \"The Magic of Dance\" -kiertueelle, jossa tanssi toimii liittävänä voimana eri kulttuurien välillä! ", "sv": "Välkommen till turnén ”The Magic of Dance”, där dansen fungerar som en sammanbindande kraft mellan olika kulturer! ", "en": "Welcome to \"The Magic of Dance\" tour, where dance acts as a connecting force between different cultures! " }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Tämä kunnianhimoinen hanke tarjoaa unohtumattomia elämyksiä, jotka herättävät henkiin kulttuurisen monimuotoisuuden ja antavat äänen jokaiselle tanssijalle. Musiikki- ja tanssiyhtyeen esityksissä yhdistyvät erilaiset tanssityylit – perinteiset kansantanssit moderniin muotokieleen – luoden dynaamisen ja visuaalisesti kiehtovan kokemuksen, joka vie katsojat matkalle eri aikakausiin ja paikkoihin.</p><p> </p><p>Kiertueen aikana katsojia odottavat myös osallistavat tanssityöpajat, joissa jokainen, taitotasosta riippumatta, voi kokeilla esityksissä käytettyjä tekniikoita. Työpajat tarjoavat nuorille ja aloittelijoille mahdollisuuden oppia tanssia, yhteistyötä ja itseilmaisua asiantuntevien ohjaajien opastuksella. Näiden hetken myötä osallistujat tulevat osaksi yhteisöä, jossa jokainen voi jakaa omia tarinoitaan ja oppia toisten kulttuurista.</p><p> </p><p>\"The Magic of Dance\" -kiertue houkuttelee monipuolista yleisöä, erityisesti perheitä, nuoria ja kulttuurista kiinnostuneita aikuisia, jotka kaipaavat elämyksiä ja mahdollisuuksia laajentaa omaa maailmankuvaansa. Yhteistyössä Uzbekistanin kulttuuriministeriön kanssa ja Helsingin kaupungin rahoituksen turvin voimme tarjota esteetöntä pääsyä korkealaatuiseen taiteeseen ja kehittävän ohjelman, joka on avoin kaikille.</p><p> </p><p>Liity mukaan tälle matkalle, joka yhdistää taiteen, kulttuurin ja yhteisöjen jännittävällä ja inspiroivalla tavalla. Tervetuloa tanssin taikaan – annetaan yhdessä rytmin viedä meidät uusiin ulottuvuuksiin ja kokemuksiin! Astu mukaan ja luodaan yhdessä unohtumattomia hetkiä, jotka jäävät sydämiimme ikuisesti.</p>", "sv": "<p>Detta ambitiösa projekt erbjuder oförglömliga upplevelser som ger liv åt kulturell mångfald och ger en röst åt varje dansare. En musik- och dansensemble kommer att kombinera olika dansstilar - från traditionella folkdanser till modern formell dans - för att skapa en dynamisk och visuellt fängslande upplevelse som tar tittarna på en resa till olika tider och platser.</p><p> </p><p>Turnén innehåller också deltagande dansworkshops där alla, oavsett färdighetsnivå, kan prova på de tekniker som används i föreställningarna. Workshoparna ger ungdomar och nybörjare möjlighet att lära sig dans, samarbete och självuttryck under ledning av kunniga instruktörer. Genom dessa tillfällen blir deltagarna en del av en gemenskap där alla kan dela med sig av sina egna historier och lära sig mer om varandras kulturer.</p>", "en": "<p>This ambitious project offers unforgettable experiences that bring cultural diversity to life and give a voice to every dancer. Performances by a music and dance ensemble will combine different dance styles - from traditional folk dances to modern formal dance - to create a dynamic and visually captivating experience that will take viewers on a journey to different times and places.</p><p> </p><p>The tour also includes participatory dance workshops where everyone, regardless of skill level, can try out the techniques used in the performances. The workshops offer young people and beginners the chance to learn dance, collaboration and self-expression under the guidance of expert instructors. Through these moments, participants become part of a community where everyone can share their own stories and learn about each other's culture.</p>" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsbtjtti/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6m35glm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?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": [], "info_url": null, "price": 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-09-12T12:58:17.749485Z", "last_modified_time": "2024-11-12T13:15:03.097380Z", "date_published": null, "start_time": "2024-11-23T09:00:00Z", "end_time": "2024-11-23T13: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": "Lasten viikonloppu: Perhepäivä", "sv": "Barnens veckoslut: Familjedag", "en": "Children's Weekend: Family Day" }, "provider": null, "short_description": { "fi": "Tapahtuma on osa Espoon kulttuuritalojen ja -palveluiden Lasten viikonlopun ohjelmaa. ", "sv": "Evenemanget är en del av programmet Barnens veckoslut som ordnas av Esbos kulturhus och -tjänster. ", "en": "\n\nThe event is part of the Children's Weekend programme of Espoo's cultural houses and services" }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Ohjelmassa musiikkia, kasvomaalausta, visailua ja askartelua.</p><p><br></p><p>klo 11-15 Aulassa on kirpputori, joista voit tehdä kivoja löytöjä.</p><p>klo 11-15 Askartelua (paja) </p><p>klo 11-12 Kasvomaalaus (aula/Paja) </p><p>klo 11-11.30 Musahippa ( Jaminurkka)</p><p>klo 11.45-12.15 Musahippa (Jaminurkka)</p><p>klo 12-14 Pinssipaja (Paja/aula)</p><p>klo 12-12:30 Kahoot (lava) </p><p>klo 12.30-13.00 Musahippa (Jaminurkka) </p><p>klo 13-13:30 Wonuwali (lava) guinealaista musiikkia ja tanssia esittävä ryhmä Wonuwali esiintyy triona, tanssittaen ja laulattaen kaikenikäisiä.</p><p>klo 14-15 Kasvomaalaus (aula/Paja) </p><p><br></p><p><br></p><p><br></p><p>Tapahtuma on osa Espoon kulttuuritalojen ja -palveluiden Lasten viikonlopun ohjelmaa. Lue lisää Lasten viikonlopusta espoo.fi-sivulta: espoo.fi/lastenviikonloppu.</p>", "sv": "<p>På programmet står bland annat musik, ansiktsmålning, frågesport och pyssel.</p><p><br></p><p>kl. 11.00-15.00 Det kommer att finnas en loppmarknad i lobbyn, där du kan göra fina fynd.</p><p><br></p><p>11.00-15.00 Pyssel (verkstad) </p><p><br></p><p>11-12 Ansiktsmålning (lobbyn/verkstaden) </p><p><br></p><p>11-11.30 Musahippa (Jaminurkka)</p><p><br></p><p>11.45-12.15 Musahippa (Jaminurkka)</p><p><br></p><p>12.00-14.00 Pinsverkstad (verkstad)</p><p><br></p><p>12.00-12.30 Kahoot (scen) </p><p><br></p><p>12.30-13.00 Musahippa (Jaminurkka) </p><p><br></p><p>13.00-13.30 Wonuwali (scen) Wonuwali, en guineansk musik- och dansgrupp, uppträder som trio med dans och sång för alla åldrar.</p><p><br></p><p>14:00-15:00 Ansiktsmålning (lobbyn) </p><p><br></p><p><br></p><p><br></p><p>Evenemanget är en del av programmet Barnens veckoslut som ordnas av Esbos kulturhus och -tjänster. Läs mer om Barnens veckoslut på espoo.fi: espoo.fi/lastenviikonloppu.</p>", "en": "<p>The programme includes music, face painting, quizzes and crafts.</p><p><br></p><p>from 11 am to 3 pm There will be a flea market in the lobby, where you can make some nice bargains.</p><p><br></p><p>11 am - 3 pm Crafting (workshop) </p><p><br></p><p>11-12 face painting (lobby/workshop) </p><p><br></p><p>11-11.30 a.m. Musahippa ( Jaminurkka)</p><p><br></p><p>11.45-12.15 Musahippa (Jaminurkka)</p><p><br></p><p>12.00-14.00 Pins workshop (workshop)</p><p><br></p><p>12-12:30 pm Kahoot (stage) </p><p><br></p><p>12.30-13.00 Musahippa (Jaminurkka) </p><p><br></p><p>13:00-13:30 Wonuwali (stage) Wonuwali, a Guinean music and dance group, performs as a trio, dancing and singing for all ages.</p><p><br></p><p>14:00-15:00 Face painting (lobby/pavilion) </p><p><br></p><p><br></p><p>Translated with DeepL.com (free version)</p><p><br></p><p>The event is part of the Children's Weekend programme of Espoo's cultural houses and services. Read more about the Children's Weekend on espoo.fi: espoo.fi/lastenviikonloppu.</p>" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6m35glm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjnf2wykm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:69178/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8270/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/20HGluXUy4", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:tyt", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-25T05:47:40.624170Z", "last_modified_time": "2024-11-12T07:38:07.720792Z", "date_published": null, "start_time": "2024-11-20T15:00:00Z", "end_time": "2024-11-20T16: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": "Info- ja keskustelutilaisuus: Vermonpolku", "sv": "Info- och diskussionstillfälle: Vermostigen", "en": "Information and discussion event: Vermonpolku" }, "provider": null, "short_description": { "fi": "Tervetuloa keskustelemaan suunnittelijoiden kanssa Vermonpolun asemakaavasta. ", "sv": "Varmt välkommen att få höra mer om och diskutera Vermostigen-planen med planerarna. ", "en": "You are warmly welcome to hear about the Vermonpolku plan and discuss it with the planners." }, "info_url": { "fi": "https://www.espoo.fi/fi/hankkeet/uudisrakentamista-vermonpolulle-makkylan-aseman-viereen", "sv": "https://www.espoo.fi/sv/projekt/nybyggande-vid-vermostigen-bredvid-makkyla-station", "en": "https://www.espoo.fi/en/projects/new-construction-on-vermonpolku-next-makkyla-station" }, "provider_contact_info": null, "description": { "fi": "<p>Lämpimästi tervetuloa kuulemaan ja keskustelemaan suunnittelijoiden kanssa Vermonpolun kaavasta, joka on edennyt ehdotusvaiheeseen. Tule tutustumaan suunnitelmiin ja vaikuttamaan kaavan viimeistelyyn.</p><p>Järjestämme alueen asukkaille ja muille kiinnostuneille asukastilaisuuden Leppävaaran elä ja asu -seniorikeskuksen ruokasalissa, Säterinkatu 3, keskiviikkona 20.11. 2024 klo 17.00–18.30.</p><p>Tilaisuudessa tutustutaan asemakaavamuutokseen info-osuuden aikana. Tämän jälkeen on varattu aikaa kysymyksille ja kommenteille. Tapaat asukastilaisuudessa kaavan päävalmistelijan Kati Kivelän, suunnitteluinsinöörin Ida Lehmuksen liikennesuunnittelusta ja maisema-arkkitehti Ina Westerlundin. Lisäksi paikalla kysymyksiin vastaamassa on rakennuttaja-arkkitehti Jaana Hellinen Espoon Asunnoista. Tilaisuuden puheenjohtajana toimii Julia Lindholm kaupunkisuunnittelulautakunnasta.</p><p>Tapahtuma on avoin kaikille kiinnostuneille. Ei ennakkoilmoittautumista, nähdään Leppävaaran elä ja asu -seniorikeskuksessa.</p>\nMistä on kyse?<p>Vermonpolun kaava-alueeseen (113906) kuuluu Espoon asuntojen asuintontti osoitteessa Vermonpolku 3. Kaava-alue käsittää myös pienen osan tontin pohjoispuolisesta Sikurimyllynpuistosta.</p><p>Asemakaavan muutoksen tavoitteena on tontin nykyisten rakennusten korvaaminen uusilla asuinrakennuksilla. Tontin rakennusoikeutta kasvatetaan maltillisesti nykyisestä 2 100 kerrosneliömetristä 2 600 kerrosneliömetriin Vermonrinteen asuinalueen mittakaavaa ja kaupunkikuvaa huomioiden. Tontin pinta-alaa kasvatetaan pohjoisen suuntaan, ja eteläreunasta muutetaan pala tontista katualueeksi. Kaikkiaan tontin pinta-ala kasvaa muutoksen myötä 143 neliömetriä.</p><p>Tontille on kaavaehdotuksessa osoitettu yksi enintään kolmekerroksinen rakennuksen rakennusala tontin pohjoisreunaan. Tontin keskiosassa on yhtenäinen rakennusala kaksikerroksisille asuinrakennuksille. Viitesuunnitelmassa tontin pohjoisreunaan on sijoitettu luhtikäytävällinen kerrostalo ja keskiosassa on kolme kaksikerroksista rivitaloa. Pysäköintialue on nykyisellä paikallaan tontin eteläreunassa.</p><p>Kaavamuutoksen myötä Vermonpolun päähän on mahdollista rakentaa kääntöpaikka. Muilta osin kulkuyhteydet alueella pysyvät nykyisellään.</p><p>Kaavaehdotus on nähtävillä <a href=\"https://www.espoo.fi/fi/hankkeet/uudisrakentamista-vermonpolulle-makkylan-aseman-viereen\">kaavan verkkosivuilla</a> 4.11.-3.12.2024.</p>\nLisätiedot tapahtumasta:<p>Mervi Romppanen, mervi.romppanen@espoo.fi, 050 524 6026</p>\nTurvallisemman tilan periaatteet<p>Haluamme, että tapahtumassamme on kaikilla hyvä olla, minkä vuoksi tapahtumassa noudatetaan turvallisemman tilan periaatteita. Kunnioitathan siis muiden rajoja. Älä myöskään tee turhia oletuksia kanssaolijoiden taustoista, sukupuolesta, seksuaalisuudesta tai muista identiteettitekijöistä. Kaikenlainen häirintä, syrjintä tai muu toisten rajojen rikkominen johtaa häiriköijän poistamiseen alueelta. Mikäli kohtaat häirintää tai ahdistavia tilanteita tapahtumassamme, ole rohkeasti yhteydessä henkilökuntaan!</p>", "sv": "<p>Varmt välkommen att få höra mer om och diskutera Vermostigen-planen med planerarna. Planen har nu framskridit till förslagsskedet. Kom och bekanta dig med planerna och påverka färdigställandet av planen.</p><p>Vi ordnar ett invånarmöte för områdets invånare och andra intresserade i matsalen vid Leva och bo-seniorcentralen i Alberga, Säterigatan 3, onsdagen den 20 november 2024 kl. 17.00–18.30.</p><p>Under kvällens infoavsnitt bekantar vi oss med detaljplaneändringen. Därefter har vi reserverat tid för frågor och kommentarer. Under invånarmötet träffar du planens huvudberedare Kati Kivelä, planeringsingenjör Ida Lehmus från trafikplaneringen, landskapsarkitekt Ina Westerlund och projektkoordinator Mervi Romppanen. Dessutom finns byggherre-arkitekt Jaana Hellinen från Esbo Bostäder på plats för att svara på frågorna. Ordförande för evenemanget är Julia Lindholm från stadsplaneringsnämnden.</p><p>Tillställningen är öppen för alla intresserade. Ingen förhandsanmälan behövs, vi ses på Leva och bo-seniorcentralen i Alberga.</p><p> </p><p><br></p>\nVad är det frågan om?<p>Till Vermostigens planområde (113906) hör Esbo Bostäders bostadstomt på adressen Vermostigen 3. Planområdet omfattar också en liten del av Cikoriekvarnsparken norr om tomten.</p><p>Syftet med detaljplaneändringen är att ersätta tomtens nuvarande byggnader med nya bostadshus. Byggrätten på tomten utökas måttligt från nuvarande 2 100 våningskvadratmeter till 2 600 våningskvadratmeter med beaktande av skalan hos Vermobrantens bostadsområde och stadsbilden. Tomtens areal ökas i nordlig riktning och vid den södra kanten ändras en bit av tomten till gatuområde. Totalt ökar tomtens areal med 143 kvadratmeter i och med ändringen.</p><p>På tomten har i planförslaget anvisats en byggnadsyta med högst tre våningar vid tomtens norra kant. I mitten av tomten finns en enhetlig byggnadsyta för bostadsbyggnader i två våningar. I referensplanen har ett höghus med loftgång placerats vid tomtens norra kant och i mitten ligger tre radhus i två våningar. Parkeringsplatsen ligger på sin nuvarande plats vid tomtens södra kant.</p><p>I och med planändringen är det möjligt att bygga en vändplats i ändan av Vermostigen. Till övriga delar förblir förbindelserna i området oförändrade.</p><p>Planförslaget finns till påseende <a href=\"https://www.espoo.fi/sv/projekt/nybyggande-vid-vermostigen-bredvid-makkyla-station\">på planens webbplats</a> 4.11–3.12.2024.</p><p><br></p>\nMer information om evenemanget:<p>Mervi Romppanen, mervi.romppanen@espoo.fi, 050 524 6026</p>", "en": "<p>You are warmly welcome to hear about the Vermonpolku plan and discuss it with the planners, as the plan has progressed to the proposal stage. Come and learn about the plans and influence the final steps of the plan work.</p><p>We will hold a residents’ event for local residents and other interested parties at the Leppävaara Life and Living Centre (address Säterinkatu 3) on Wednesday 20 November 2024 at 17.00–18.30.</p><p>During the information section of the event, participants will learn more about this amendment to the detailed plan. After this comes a moment reserved for questions and comments. At the residents’ event, you will get to meet Kati Kivelä, who leads the preparation of the plan, Planning Engineer Ida Lehmus from traffic planning, Landscape Architect Ina Westerlung and Interaction Project Coordinator Mervi Romppanen. In addition, Development Architect Jaana Hellinen from Espoon Asunnot will be present to answer questions. The event is chaired by Julia Lindholm from the City Planning Committee.</p><p>The event is open to all interested parties. No advance registration is required, see you at the Leppävaara Life and Living Centre!</p><p> </p><p><br></p>\nWhat is it all about?<p>The Vermonpolku plan area (113906) includes a residential plot of Espoon Asunnot at Vermonpolku 3. The plan area also includes a small part of Sikurimyllynpuisto, which is located north of the plot.</p><p>The amendment to detailed plan aims to replace the existing buildings on the plot with new residential buildings. The permitted building volume of the plot will be moderately increased from the current 2,100 square metres to 2,600 square metres, taking into account the scale and cityscape of the Vermonrinne residential area. The area of the plot will be expanded northwards, and at the southern edge, a piece of the plot will be turned into a street area. Altogether, the area of the plot will increase by 143 square metres with this amendment.</p><p>In the plan proposal, one building’s building area of up to three storeys has been marked for the northern edge of the plot. The central part of the plot has an uninterrupted building area for two-storey residential buildings. In the reference plan, a balcony-access block of flats is located at the northern edge of the plot and there are three two-storey terraced houses in the central part. The parking area is in its current location at the southern edge of the plot.</p><p>With this plan amendment, it is possible to build a turning space at the end of Vermonpolku. In other respects, the transport connections in the area will remain unchanged.</p><p>The plan proposal is available on <a href=\"https://www.espoo.fi/en/projects/new-construction-on-vermonpolku-next-makkyla-station\">the plan webpage</a> from 4 November to 3 December 2024. </p><p><br></p>\nMore information about the event:<p>Mervi Romppanen, mervi.romppanen@espoo.fi, 050 524 6026</p>" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjnf2wykm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agisxo7u2m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": 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-07T06:57:34.782825Z", "last_modified_time": "2024-11-11T14:07:40.283985Z", "date_published": null, "start_time": "2024-12-12T08:15:00Z", "end_time": "2024-12-12T08: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": "PERUTTU Lastenkonsertti Hattuset", "sv": "AVBOKAD Hattisarnas konsert", "en": "CANCELLED Hattuset concert" }, "provider": null, "short_description": { "fi": "Tervetuloa Lastenorkesteri Hattusten konserttiin. ", "sv": "Välkommen på Hattisarnas konsert.", "en": "Welcome to the Hattuset concert at the library." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa Lastenorkesteri Hattusten konserttiin kirjastoon. Lapset ja lapsenmieliset pääsevät osallistumaan musiikin riemuun. Tapahtuma sopii myös eri kieliryhmille. Laulamme suomeksi, ruotsiksi ja </p><p>englanniksi. </p><p>Mikäli haluatte voitte tehdä omat rytmisoittimet ja tuoda ne mukananne konserttiin. <a href=\" https://youtu.be/_g15id_GJ7QOhjeet löytyvät \">Ohjeet löytyvät </a>Kirjastokurren YouTube kanavalta.</p><p><br></p><p><a href=\"https://link.webropolsurveys.com/S/170053B147302F5A\">Ryhmät vain ennakkoilmoittatumisella. </a>Ilmoitathan jokaisen ryhmän omalla varauksella. Ryhmän koko max 25 lasta.</p>", "sv": "<p>Välkommen på Hattisarnas konsert. Vi för barn och barnasinnade på en resa i musikens fröjder. Evenemanget passar olika språkgrupper, vi sjunger på finska, svenska och engelska.</p><p><br></p><p>Ni kan även pyssla egna rytminstrument och delta i konserten. <a href=\" https://youtu.be/_g15id_GJ7Q\">Det finns instruktioner på BibbaKurres youtube kanal.</a></p><p><a href=\"https://link.webropolsurveys.com/S/074331A13082F895\">Reservera er tid från följande alternativ.</a></p>", "en": "<p>Welcome to the Hattuset concert at the library.</p><p>Free admission. <a href=\"https://link.webropolsurveys.com/S/170053B147302F5A\">Groups max 25 pax must be registered.</a></p>" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agisxo7u2m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjrwolkwq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le: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/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" }, { "@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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-11T12:11:01.667707Z", "last_modified_time": "2024-11-11T13:16:14.579957Z", "date_published": "2024-11-11T11:59:00Z", "start_time": "2025-03-04T06:00:00Z", "end_time": "2025-04-26T17: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": "Näyttely: Yksisarvisen kuukautiset", "sv": "Utställning: Yksisarvisen kuukautiset", "en": "Art exhibition: Yksisarvisen kuukautiset" }, "provider": { "fi": "Anna Penttilä", "sv": "Anna Penttilä", "en": "Anna Penttilä" }, "short_description": { "fi": "Ite-taiteilija Anna Penttilän omaperäistä taidetta.", "sv": "Välkommen att besöka Anna Penttiläs utställning \"Yksisarvisen kuukautiset\" i Hagalund biblioteken.", "en": "Art exhibition \"Yksisarvisen kuukautiset\" by Anna Penttilä in Tapiola Library." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p><strong>Ite-taiteilija Anna Penttilän omaperäistä taidetta. Työt on sekatekniikkaa. </strong></p><p>Olen ITE-taiteilija. Mulla on kaksi taidemetsikköä toinen Kirkkonummella ja toinen Haapavedellä. Teen pääsääntöisesti taidetta niihin. Taiteeni on outoa, hupsua ja värikästä ja usein myös seksuaalista.</p>", "sv": "<p>Välkommen att besöka Anna Penttiläs utställning \"Yksisarvisen kuukautiset\" i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"Yksisarvisen kuukautiset\" by Anna Penttilä in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "location_extra_info": { "fi": "Näyttelyparvi (kirjaston lehtisalissa)", "sv": "Utställningsloftet (i bibliotekets tidningssal)", "en": "Exhibition loft (in the library’s reading room)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjrwolkwq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjrdesd6y", "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/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-09T14:51:03.229100Z", "last_modified_time": "2024-11-09T14:51:03.229122Z", "date_published": "2024-11-09T15:00:00Z", "start_time": "2024-11-13T16:00:00Z", "end_time": "2024-11-13T17: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": "Järjestöt Espoossa - ruohonjuuritason muutosvoima" }, "provider": null, "short_description": { "fi": "Keskustelutilaisuus " }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa espoonlahtelaisten puolueosastojen yhteiseen keskustelutilaisuuteen.</p><p>Mistä Espoonlahden elinvoimaisuus syntyy?</p><p>Miten järjestöjä tuetaan Espoossa?</p><p>Miten asukkaiden hyvinvointia tulisi tukea?</p><p>Miten asukkaiden mielipiteitä tulisi kuunnella?</p><p>Ke 13.11.2024 klo 18 alkavassa keskustelussa ovat mukana:</p><p>Aki Hauru (vas.), Antti Jäänvirta (kok.), Laura Malme (vihr.) ja Johanna Värmälä (sd.).</p><p>Tilaisuuden juontaa Espoonlahden demareiden puheenjohtaja Teemu Tarvainen.</p>" }, "location_extra_info": { "fi": "Salonki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjrdesd6y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqzwngcq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?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:agggfz66by/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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: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: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:p6033/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-08T17:17:07.524717Z", "last_modified_time": "2024-11-08T17:17:07.524737Z", "date_published": "2024-11-08T17:14:00Z", "start_time": "2024-11-25T13:00:00Z", "end_time": "2024-11-25T17: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": "Kiertotalouspäivän pajat", "sv": "Cirkulära ekonomidagens verkstäder", "en": "Workshops for Circular Economy Day" }, "provider": null, "short_description": { "fi": "Vaatteiden korjausta ja korujen askartelua", "sv": "Klädreparation och smyckestillverkning", "en": "Clothing Repair and Trinket Crafting" }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>VAATTEIDEN KORJAUSTA JA TUUNAUSTA PAJASSA</p><p>Tule korjaamaan vaatteitasi tai tuunaamaan niistä uusia! Meillä on materiaaleja ja apukäsiä, mutta vain muutama ompelukone. Huomioithan, että voit tulla viimeistelemään työsi myöhemminkin, jos ompelukoneilla on tänään ruuhkaa. Tuo mukaan luovuutesi ja mielikuvituksesi ja vaate, jonka haluat korjata.</p><p>TEE OMA KORU-DESIGN</p><p>Paljon toivottu korupaja on täällä! Tule nuortentila Voxiin toteuttamaan upea visiosi ja tee kierrätyshelmistä uusia katseenvangitsija -koruja. </p><p><br></p>", "sv": "<p>KLÄDREPARATION OCH UPCYCLING PÅ VERKSTADEN </p><p>Kom och laga dina kläder eller skapa nya av gamla! Vi har material och hjälpande händer, men endast några få symaskiner. Tänk på att du kan komma tillbaka senare för att slutföra ditt arbete om symaskinerna är upptagna idag. Ta med din kreativitet, fantasi och de kläder du vill reparera.</p><p>GÖR DIN EGEN SMYCKESDESIGN</p><p>Den efterlängtade smyckesverkstaden är här! Kom till ungdomsrummet Vox för att förverkliga din fantastiska vision och skapa nya, iögonfallande smycken från återvunna pärlor.</p>", "en": "<p>CLOTHING REPAIR AND UPCYCLING WORKSHOP </p><p>Come and repair your clothes or turn them into something new! We have materials and helping hands, but only a few sewing machines. Please note that you can come back later to finish your work if the sewing machines are busy today. Bring your creativity, imagination, and the clothing you want to repair.</p><p>MAKE YOUR OWN JEWELRY DESIGN</p><p>The much-anticipated jewelry workshop is here! Come to the youth space Vox to bring your amazing vision to life and create new, eye-catching jewelry from recycled beads</p>" }, "location_extra_info": { "fi": "Paja ja Vox" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqzwngcq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqzwngn4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?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:agggfz66by/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p3466/?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:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-08T16:41:40.895952Z", "last_modified_time": "2024-11-08T16:41:40.895974Z", "date_published": "2024-11-08T16:40:00Z", "start_time": "2024-11-25T15:30:00Z", "end_time": "2024-11-25T17: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": "Keskustelutilaisuus: Kiertotalous ja Suomi" }, "provider": null, "short_description": { "fi": "Asiantuntijat keskustelevat tulevaisuuden näkymistä kiertotalouden näkökulmasta. " }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Keskustelutilaisuudessa puhujina ovat: </p><p>Tiina Elo (Vihr.) Kansanedustaja, maatalous- ja metsätieteiden maisteri, maa- ja metsätalousvaliokunnan sekä liikenne- ja viestintävaliokunnan jäsen. </p><p>Sheikki Laakso (Ps.) Kansanedustaja ja kierrätysyrittäjä. Tulevaisuusvaliokunnan sekä liikenne- ja viestintävaliokunnan jäsen.</p><p>Elina Rodriguez (kuntavaaliehdokas) Yhteiskuntatieteiden maisteri sekä eläinpoliittinen asiantuntija. </p><p>Paneelin juontaa Inari Mykkänen Espoon Kaupungin kirjastosta.</p>" }, "location_extra_info": { "fi": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqzwngn4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqzwngsi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?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:agggfz66by/?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:agggfz675q/?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:p11406/?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:p13084/?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: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:p6033/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-08T16:16:30.830298Z", "last_modified_time": "2024-11-08T16:16:30.830340Z", "date_published": "2024-11-08T16:33:00Z", "start_time": "2024-11-25T14:30:00Z", "end_time": "2024-11-25T15:15: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": "Kirjailijavierailu: Pasi Nokelainen - Maailmanloppu peruttu (2023)" }, "provider": null, "short_description": { "fi": "Nokelainen on tehnyt tietokirjan, jossa hän esittää 7 väitettä kiertotaloudesta. Puhumme kiertotalouden mahdollisuuksista." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Pasi Nokelainen on kestävän kehityksen toimisto Kaskasin viestintäasiantuntija ja aiemmin hän on toiminut ulkoministeriön globaalikysymyksiin keskittyvän Kehitys–Utveckling -lehden päätoimittajana. </p><p>Teos Maailmanloppu peruttu (2023) keskittyy etsimään ratkaisuja globaalille ilmastokriisille kiertotaloudesta. </p><p>Haastattelijana toimii Heli Lekka Espoon Kaupungin kirjastosta.</p>" }, "location_extra_info": { "fi": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqzwngsi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqy25x6q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?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:agggfz66by/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-08T15:17:16.259316Z", "last_modified_time": "2024-11-08T15:17:16.259337Z", "date_published": "2024-11-08T15:14:00Z", "start_time": "2024-11-25T06:00:00Z", "end_time": "2024-11-29T17: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": "Vaatteidenvaihtokirppis", "sv": "Klädbytarloppis", "en": "Clothing Swap Flea Market" }, "provider": null, "short_description": { "fi": "Tuo oma käyttämättä jäänyt vaatteesi ja ota tilalle uusi, kierrätetty vaate. ", "sv": "Ta med dina oanvända kläder och byt dem mot nya, återvunna plagg.", "en": "Bring your unused clothes and exchange them for a new, recycled garment." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Tuo käyttämättä jäänyt hyväkuntoinen ehjä ja puhdas vaate ja vie mieluinen kirppikseltä uuteen kotiin. Näin saadaan pidennettyä vaatteiden käyttöikää. Ompun kirjaston pienimuotoiselle kirppikselle vaatteiden pohjakassaan ovat tehneet vaatelahjoituksia esimerkiksi kokki Meri-Tuuli Väntsi ja koomikot Eeva Vekki ja Ida Grönlund, sekä monet kansanedustajat eri puolueista. Vaate-pohjakassaa kerätään edelleen! </p><p>Tällä luontoystävällisellä kirppiksellä ei vaihdeta Temun ja Sheinin ja muiden niiden kaltaisten ultrapikamuotimerkkien vaatteita. </p><p>Vaaterekki on kirjastossa koko viikon maanantaista perjantaihin! Tervetuloa tekemään löytöjä!</p>", "sv": "<p>Ta med ett oanvänt, välbehållet och rent plagg och byt ut det mot något du tycker om från loppisen — på så sätt förlänger vi livslängden på kläderna. Till det lilla loppiset på Ompus bibliotek har basplagg donerats av bland andra kocken Meri-Tuuli Väntsi och komikerna Eeva Vekki och Ida Grönlund, samt flera riksdagsledamöter från olika partier. Vi samlar fortfarande in fler kläddonationer!</p><p>På denna miljövänliga loppis byter vi inte plagg från Temu, Shein eller andra ultrafast fashion-märken.</p><p>Klädstången finns på biblioteket hela veckan, måndag till fredag! Välkommen att göra fynd!</p>", "en": "<p>Bring an unused, good-quality, intact, and clean garment, and take home something you like from the flea market — this way, we extend the lifespan of clothing. For the small flea market at Ompu Library, clothing donations have been made by chef Meri-Tuuli Väntsi and comedians Eeva Vekki and Ida Grönlund, as well as many Members of Parliament from various parties. We are still collecting more clothing donations!</p><p>At this eco-friendly flea market, we do not accept items from Temu, Shein, or other ultra-fast fashion brands.</p><p>The clothing rack will be at the library all week from Monday to Friday! Welcome to discover new treasures!</p>" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqy25x6q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqy25yki", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?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:agggfz66by/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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:p2630/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-08T14:48:02.797110Z", "last_modified_time": "2024-11-08T14:48:02.797131Z", "date_published": "2024-11-08T15:00:00Z", "start_time": "2024-11-25T06:00:00Z", "end_time": "2024-11-25T17: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": "Maailman Kiertotalouspäivä 25.11.", "sv": "Världens cirkulära ekonomidag", "en": "Circular Monday on 25th on November" }, "provider": null, "short_description": { "fi": "Keskustelutilaisuuksia ja paljon tekemistä kiertotalouspäivään liittyen", "sv": "Diskussionstillfällen och många aktiviteter relaterade till cirkulära ekonomidagen", "en": "Discussion events and plenty of activities related to the Circular Economy Day" }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>08:00 - 20:00 ma-pe / Kiertotalouskirppis, joka toimii “tuo vaate, ota vaate” -periaatteella. (ethän tuo Temu- tai Shein -tyypisiä merkkejä, eikä likaisia vaatteita) </p><p>15:00 - 19:00 Vaatteiden korjaus ja tuunaus työpaja / PAJA</p><p>15:00 - 19:00 Korujen askartelua kierrätysmateriaaleista / VOX</p><p>16:30 - 17:15 Kirjailijavierailu: Pasi Nokelainen “Maailman loppu peruttu, 2023” - kuinka kiertotalous pelastaa maailman. /STAGE</p><p>17:30 - 19:00 Keskustelutilaisuus: Kiertotalous ja Suomi. Puhujat Tiina Elo (vihr. maa-ja metsätalousvaliokuunan jäsen) Sheikki Laakso (Ps. kierrätysyrittäjä) sekä Elina Rodriguez (eläinpoliittinen asiantuntija)</p><p>Kaikista tapahtumista on lisätietoa omilla tapahtumasivuillaan.</p>", "sv": "<p>08:00 - 20:00 mån-fre / Cirkulär ekonomi-loppis som fungerar enligt \"lämna ett plagg, ta ett plagg\"-principen. (vänligen ta inte med märken som Temu eller Shein, och inte smutsiga kläder)</p><p>15:00 - 19:00 Klädreparation och upcycling-workshop / PAJA</p><p>15:00 - 19:00 Smyckespyssel av återvunnet material / VOX</p><p>16:30 - 17:15 Författarbesök: Pasi Nokelainen “Världens undergång inställd, 2023” - hur cirkulär ekonomi räddar världen. / STAGE</p><p>17:30 - 19:00 Diskussionspanel: Cirkulär ekonomi och Finland. Talare: Tiina Elo (Gröna, medlem i jord- och skogsbruksutskottet), Sheikki Laakso (Sannf., återvinningsföretagare) samt Elina Rodriguez (djurpolitisk expert).</p><p>Mer information om alla evenemang finns på respektive evenemangssidor.</p>", "en": "<p>08:00 - 20:00 Mon-Fri / Circular Economy Flea Market operating on a \"bring one garment, take one garment\" basis. (please avoid bringing brands like Temu or Shein, and no dirty clothes)</p><p>15:00 - 19:00 Clothing repair and upcycling workshop / PAJA</p><p>15:00 - 19:00 Jewelry crafting from recycled materials / VOX</p><p>16:30 - 17:15 Author visit: Pasi Nokelainen “The End of the World Cancelled, 2023” - how circular economy saves the world. / STAGE</p><p>17:30 - 19:00 Panel discussion: Circular Economy and Finland. Speakers: Tiina Elo (Green, member of the Agriculture and Forestry Committee), Sheikki Laakso (Finns Party, recycling entrepreneur), and Elina Rodriguez (animal policy expert).</p><p>Further information about all events is available on their respective event pages.</p>" }, "location_extra_info": { "fi": "Stage, Paja ja Vox" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqy25yki/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqx7mydm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-08T12:54:19.052814Z", "last_modified_time": "2024-11-08T12:54:19.052834Z", "date_published": null, "start_time": "2024-11-18T08:30:00Z", "end_time": "2024-11-18T10: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": "Kantovälinetreffit" }, "provider": null, "short_description": { "fi": "Tapahtuma on avoin ja ilmainen ja suunnattu kaikille kantamisesta ja kantovälineistä kiinnostuneille." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Kaipaatko opastusta kantovälineen käyttöön? Kiinnostaako sinua kokeilla erilaisia kantovälineitä? Haluatko oppia uusia sidontoja tai tekniikoita? </p><p><br></p><p>Treffeillä saat apua oman kantovälineen käyttöön, voit tutustua erilaisiin kantovälineisiin ja tavata muita kantamisesta kiinnostuneita.</p><p><br></p><p>Paikalla sinua opastavat ergonomiseen kantamiseen perehtyneet vapaaehtoiset kantotukihenkilöt.</p>" }, "location_extra_info": { "fi": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqx7mydm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqnvwzgu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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: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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150450, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-17T07:59:13.420035Z", "last_modified_time": "2024-01-17T07:59:13.420055Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "shakkinappuloita pelilaudalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-11-07T13:12:54.548746Z", "last_modified_time": "2024-11-08T11:45:39.296566Z", "date_published": null, "start_time": "2024-12-08T11:00:00Z", "end_time": "2024-12-08T15: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": "Shakkiturnaus", "en": "Chess tournament" }, "provider": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "short_description": { "fi": "Turnaus on tarkoitettu jo alkeet osaaville nuorille ja lapsille. ", "en": "The tournament is aimed at young people and children who already know the basics." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Turnaus on tarkoitettu jo alkeet osaaville nuorille ja lapsille. </p>", "sv": "<p><br></p><p>Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.</p>", "en": "<p>The tournament is aimed at young people and children who already know the basics.</p>" }, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqnvwzgu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqnvw2qu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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: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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqnvw2fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqnvw2jm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqnvw2m4/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-07T12:52:16.068058Z", "last_modified_time": "2024-11-08T11:36:52.272220Z", "date_published": null, "start_time": "2024-11-11T11:00:00Z", "end_time": "2024-11-27T13: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": "Sarjakuvatyöpaja", "en": "Comic workshop" }, "provider": null, "short_description": { "fi": "Tule piirtämään sarjakuvia rennossa ilmapiirissä! Sarjakuvapajaan ei ole ennakkoilmoittautumista, tule vain rohkeasti mukaan.", "en": "Draw comics in a casual atmosphere! There is no preregistration, feel free to jump in at any time." }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Tule piirtämään sarjakuvia rennossa ilmapiirissä!</p><p>Sinulla ei tarvitse olla aikaisempaa osaamista sarjakuvista tai edes piirtämisestä - tärkeintä on asenne! Pajaa ohjaa kirjaston työntekijä, joka on sarjakuvataiteilija. Kirjasto tarjoaa perustarvikkeet (paperia ja lyijykyniä), mutta omia välineitä saa tuoda ja käyttää jos niitä on. Paja on kaikenikäisille ja on maksuton. Sarjakuvapajaan ei ole ennakkoilmoittautumista, tule vain rohkeasti mukaan!</p><p><br></p>", "en": "<p>Draw comics in a casual atmosphere!</p><p>You do not need to have earlier experience with comics or even drawing - the most important thing is your attitude! The workshop will be hosted by a library’s employee, who is also a comic artist. The library offers basic tools (paper and pencils), but bringing your own tools is allowed, if you have any. The workshop is open to all ages and is free. There is no preregistration, feel free to jump in at any time!</p><p><br></p>" }, "location_extra_info": { "fi": "Pointti", "en": "Pointti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqnvw2qu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqxd6yj4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqxd6x2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqxd6yfu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-11-08T11:12:36.823741Z", "last_modified_time": "2024-11-08T11:12:36.823763Z", "date_published": null, "start_time": "2024-11-25T08:30:00Z", "end_time": "2024-12-09T09: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": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Story time in Arabic" }, "provider": null, "short_description": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Story time in Arabic" }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa arabiankieliselle satuhetkelle, jossa vapaaehtoinen lukee arabiankielisiä satuja. Satuhetket ovat kerran kuukaudessa maanantaisin klo 10:30-11 Jaminurkassa (25.11 & 9.12).</p><p><br></p><p>اهال و سهال!</p><p>يوم االثنين 25.11 و 9.12 من الساعة 10:30 اىل 11:00</p><p>وقت قراءة قصص األطفال باللغة العربية</p><p>مرحبا بكم في وقت قراءة قصص االطفال باللغة العربية حيث يقرأ أحد المتطوعين القصص</p><p>.باللغة العربية</p><p>أوقات قراءة القصص مرة واحدة في الشهر يوم االثنين 25.11 & 9.12 من الساعة 10:30 صباًحا</p><p>.(Jaminurkka\" (إىل 11 صباًحا في \"يامينوركا</p><p><br></p>", "sv": "<p>Välkommen till en arabisk sagostund, där en frivillig läser arabiska sagor. Sagostunderna äger rum en gång i månaden på måndagar kl. 10.30-11.00 i Jaminurkka (25.11 & 9.12).</p><p><br></p><p>اهال و سهال!</p><p>يوم االثنين 25.11 و 9.12 من الساعة 10:30 اىل 11:00</p><p>وقت قراءة قصص األطفال باللغة العربية</p><p>مرحبا بكم في وقت قراءة قصص االطفال باللغة العربية حيث يقرأ أحد المتطوعين القصص</p><p>.باللغة العربية</p><p>أوقات قراءة القصص مرة واحدة في الشهر يوم االثنين 25.11 & 9.12 من الساعة 10:30 صباًحا</p><p>.(Jaminurkka\" (إىل 11 صباًحا في \"يامينوركا</p>", "en": "<p>Welcome to an Arabic story time, where a volunteer will read Arabic fairy tales. The storytimes take place once a month on Mondays from 10:30-11am in Jaminurkka (25.11 & 9.12).</p><p><br></p><p>اهال و سهال!</p><p>يوم االثنين 25.11 و 9.12 من الساعة 10:30 اىل 11:00</p><p>وقت قراءة قصص األطفال باللغة العربية</p><p>مرحبا بكم في وقت قراءة قصص االطفال باللغة العربية حيث يقرأ أحد المتطوعين القصص</p><p>.باللغة العربية</p><p>أوقات قراءة القصص مرة واحدة في الشهر يوم االثنين 25.11 & 9.12 من الساعة 10:30 صباًحا</p><p>.(Jaminurkka\" (إىل 11 صباًحا في \"يامينوركا</p>" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqxd6yj4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agjqw4mjzy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:10/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:6/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2851/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p84/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-11-08T11:03:30.524661Z", "last_modified_time": "2024-11-08T11:03:30.524682Z", "date_published": "2024-11-08T11:03:29.981000Z", "start_time": "2025-04-19", "end_time": "2999-12-31", "custom_data": { "spots": "5", "org_name": "Piste Y", "website_url": "", "contact_email": "mikko.riippi+lop@gmail.com", "contact_phone": "+3584776557", "contact_last_name": "Riippi", "contact_first_name": "Mikko" }, "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": "TEstTestiTestu" }, "provider": { "fi": "Test Company", "sv": "123456-7" }, "short_description": { "fi": "Heii" }, "info_url": null, "provider_contact_info": null, "description": { "fi": "Heii" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agjqw4mjzy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjqv2rlby", "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" }, { "@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": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqv2rkae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqv2rk5y/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-08T07:54:04.052975Z", "last_modified_time": "2024-11-08T07:54:04.052997Z", "date_published": null, "start_time": "2024-11-14T15:00:00Z", "end_time": "2024-12-12T16: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": "Lukudisko lapsiperheille" }, "provider": null, "short_description": { "fi": "Lukudisko lapsiperheille\nTule lukemaan kuvia ja tanssimaan yhdessä! " }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Lukudisko lapsiperheille</p><p>Tule lukemaan kuvia ja tanssimaan yhdessä! Alle kouluikäisten lasten ja vanhempien yhteisessä Lukudiskossa kirjoja lähestytään kuvien kautta – kirjoihin liittyvää musiikkia ja tanssia unohtamatta. </p><p>Mitä kuvassa näkyy? Mitä ääniä kuvassa kuuluu? Mitä tuoksuja kuvan maailmassa on? Keskustelua vetävät kirjastolaiset Jimi Lybeck ja Elina Roukala.</p><p><br></p><p>Torstaina 14.11. klo 17-18</p><p>Torstaina 12.12. klo 17-18</p><p>Entressen kirjaston Sininen huone</p>" }, "location_extra_info": { "fi": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjqv2rlby/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agiu7tcpwa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcohe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcove/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tco3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpiy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpqu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jfsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jgby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jggy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jgle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jgpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcr6jgti/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2024-03-13T08:52:37.532917Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-08-14T06:26:53.638589Z", "last_modified_time": "2024-11-07T13:51:54.408369Z", "date_published": null, "start_time": "2024-08-30T09:00:00Z", "end_time": "2024-12-13T11: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": "SPR:n kielikahvila", "sv": "Finskt språkcafé på fredagar", "en": "Finnish Language Cafe on Fridays" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "short_description": { "fi": "Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30.", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "provider_contact_info": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä perjantaisin klo 12 - 13:30. Kielikahvila kokoontuu 6.9.-13.12.. Sinisessä huoneessa.</p><p>Ryhmää vetää Leena Toivanen 044-5759909, ltoivanen@gmail.com</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin yhteistyönä.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter och diskuterar olika ämnen varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp. Caféerna hålls på fredagar 6.9.-13.12. kl. 12:00 - 13:30 i Sininen huone</p><p>Språkcaféet på Entresse-biblioteket drivs av frivilliga från Finlands Röda Kors/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Fridays 6.9.-13.12. at 12:00 - 13:30 in Sininen huone.</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross/ Leena Toivanen 044-5759909, ltoivanen@gmail.com</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiu7tcpwa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "tet:agjqny4ojy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8215/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:10/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:12/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:2/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:3/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/tet:6/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8173/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "tet", "publisher": "ahjo:00001", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2024-11-07T13:49:56.767508Z", "last_modified_time": "2024-11-07T13:49:56.767529Z", "date_published": "2024-11-07T13:49:56.052000Z", "start_time": "2024-12-28", "end_time": "2999-12-31", "custom_data": { "spots": "4", "org_name": "Laboratorio X", "website_url": "", "contact_email": "mikko.riippi+jepp@gmail.com", "contact_phone": "+358904938829", "contact_last_name": "Henkilö", "contact_first_name": "TEsti" }, "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": "Testaaajan homma" }, "provider": { "fi": "Test Company", "sv": "123456-7" }, "short_description": { "fi": "Testausta" }, "info_url": null, "provider_contact_info": null, "description": { "fi": "Testausta" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/tet:agjqny4ojy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19366, "next": "