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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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 normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
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&page=851®istration__remaining_attendee_capacity__isnull=true
{ "meta": { "count": 32741, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=852®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=850®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "espoo_le:aghoc4omka", "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-12T09:44:51.578313Z", "last_modified_time": "2024-04-12T09:44:51.578337Z", "date_published": null, "start_time": "2024-04-17T07:30:00Z", "end_time": "2024-04-17T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "info_url": null, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta. </p><p>#musiikki #muskari #vauva </p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä. </p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. </p><p>https://link.webropol.com/s/vauvamuskari </p><p>Ilmoittautuminen on auki alla oleviin muskareihin: <br> </p><p>Sellon kirjasto (Jaminurkka) keskiviikko 17.4 klo 10.30<br>Kalajärven kirjasto (Nuorten tila) keskiviikko 17.4 klo 10.30<br>Tapiolan kirjasto (Heikki) tiistai 23.4 klo 10.30</p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin </p><p>sakari.heikka(at)espoo.fi <br>lauri.iljin(at)espoo.fi </p>" }, "name": { "fi": "Vauvamuskari" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omka/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63199", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12320, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T08:13:59.837479Z", "last_modified_time": "2024-03-14T08:13:59.837507Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745334.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12320/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T08:13:59.785325Z", "last_modified_time": "2024-04-12T08:13:40.685431Z", "date_published": null, "start_time": "2024-04-14T07:00:00Z", "end_time": "2024-04-14T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Keltainen hihitys -aistitila johdattaa koko perheen värien ja leikin riemuun! Saako keltainen sinut pomppimaan? Missä keltainen asustaa?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/966EF551550886369BCCCA65133ADD90/Keltainen_hihitys_-aistitila" }, "description": { "fi": "<p>Keltainen hihitys -aistitila johdattaa koko perheen värien ja leikin riemuun! Saako keltainen sinut pomppimaan? Missä keltainen asustaa?</p><p>Keltaisen riemukkaissa rytmeissä liikutaan, lorutellaan ja leikitään. Suristaan kuin ampiaiset, pompitaan kuin banaanit, hihitellään kuin aurinko! Sujahda aurinkovarjon alle ja ihmettele valojen säihkettä! Kuti kuti kutisee, kainalosta varpaaseen! Mistä kurkkaa keltainen? Nappaa mukaasi pieni ilon pilkahdus, tervetuloa!</p><p>Keltainen hihitys on ohjattu taidetuokio perheille, yhden tuokion kesto on noin 20 min.</p><p>Ohjatut taidetuokiot alkavat klo 10:00, 10:40, 11:20, 11:40, 12:00 ja 12:40.</p><p>Vapaa pääsy, ilmaislippuja jaetaan klo 9.45 alkaen kokoushuone 3 edustalla.</p>" }, "name": { "fi": "Keltainen hihitys -aistitila – Vaippakansan karnevaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63199/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63329", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 113438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-09T14:13:43.152644Z", "last_modified_time": "2024-04-09T14:13:43.152656Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745524.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/113438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-09T14:13:43.119867Z", "last_modified_time": "2024-04-12T07:13:49.253691Z", "date_published": null, "start_time": "2024-04-30T12:00:00Z", "end_time": "2024-04-30T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "DJ Lord Fatty soittaa perinteisten diskobiisien lisäksi lattareita ja vauhdikkaita Finnhitsejä diskoksi loihditussa musiikkisalissa." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C0FDD744B0C6A1D217920687797F1690/K-60_DISKO" }, "description": { "fi": "<p>DJ Lord Fatty soittaa perinteisten diskobiisien lisäksi lattareita ja vauhdikkaita Finnhitsejä diskoksi loihditussa musiikkisalissa.</p><p>Diskossa mukana myös kokenut tanssiopettaja ja esiintyjä Lasse Muuronen. Tule mukaan tanssimaan omalla tyylillä tai oppimaan yhdessä Lassen kanssa!</p><p>Lasse Muuronen on pitkän linjan StepUp-tanssija ja supersuosittu ohjaaja, jonka tunneilla yhdistyvät mukaansa tempaavat biisit, helpot askelkuviot ja iloisen välitön meininki.</p><p>Tällä kertaa pääsemme diskoilemaan Lassen johdolla Stoan K-60 vappudiskoon!</p><p>Vapaa pääsy</p>" }, "name": { "fi": "K-60 DISKO" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63329/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63210", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/" }, "description": null, "price": { "fi": "5 € (lapsi+aikuinen)" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12377, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T11:14:03.382896Z", "last_modified_time": "2024-03-14T11:14:03.382914Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745330.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12377/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T11:14:03.357914Z", "last_modified_time": "2024-04-11T13:14:03.993718Z", "date_published": null, "start_time": "2024-04-14T10:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vedet on elävää musiikkia, nukketeatteria ja sirkusta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB671986173B24721818C5A4860B841/LOPPUUNMYYTY_AEIOU_Vedet" }, "description": { "fi": "<p>Vedet on elävää musiikkia, nukketeatteria ja sirkusta.</p><p>Vedet on moniaistinen esitys lasten ajatuksista vedestä: sateesta, jäästä, meristä, uimisesta, suihkuista, virvokkeista, pastan keitinvedestä ja lirahduksesta.</p><p>Esitys tapahtuu yleisön yllä ja ympärillä ja se on sanaton.</p><p>Esitys huomioi vauvojen erityispiirteet yleisönä, mutta puhuttelee myös laajempaa yleisöä. Taiteellisen työryhmän rinnalla esityssisällöstä vastaa Kulttuurikeskus PiiPoon 5–8-vuotiaista koostuva Väriläiskä-asiantuntijaryhmä.</p><p>Vedet-esitys klo 11 ja 13.30<br>Kesto 30 min<br>Liput 5 € (lapsi+aikuinen)</p>" }, "name": { "fi": "LOPPUUNMYYTY AEIOU: Vedet – Vaippakansan karnevaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63210/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63209", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/" }, "description": null, "price": { "fi": "5 € (lapsi+aikuinen)" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12375, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T11:14:03.113657Z", "last_modified_time": "2024-03-14T11:14:03.113674Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745329.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12375/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T11:14:03.088768Z", "last_modified_time": "2024-04-11T13:14:03.829397Z", "date_published": null, "start_time": "2024-04-14T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vedet on elävää musiikkia, nukketeatteria ja sirkusta." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BB36D27E4A87F9FFAF8E052E6AA9A49C/LOPPUUNMYYTY_AEIOU_Vedet" }, "description": { "fi": "<p>Vedet on elävää musiikkia, nukketeatteria ja sirkusta.</p><p>Vedet on moniaistinen esitys lasten ajatuksista vedestä: sateesta, jäästä, meristä, uimisesta, suihkuista, virvokkeista, pastan keitinvedestä ja lirahduksesta.</p><p>Esitys tapahtuu yleisön yllä ja ympärillä ja se on sanaton.</p><p>Esitys huomioi vauvojen erityispiirteet yleisönä, mutta puhuttelee myös laajempaa yleisöä. Taiteellisen työryhmän rinnalla esityssisällöstä vastaa Kulttuurikeskus PiiPoon 5–8-vuotiaista koostuva Väriläiskä-asiantuntijaryhmä.</p><p>Vedet-esitys klo 11 ja 13.30<br>Kesto 30 min<br>Liput 5 € (lapsi+aikuinen)</p>" }, "name": { "fi": "LOPPUUNMYYTY AEIOU: Vedet – Vaippakansan karnevaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63209/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63204", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/" }, "description": null, "price": { "fi": "5 € (lapsi + aikuinen)" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12339, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T09:19:03.910822Z", "last_modified_time": "2024-03-14T09:19:03.910840Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745352.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12339/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T09:19:03.894911Z", "last_modified_time": "2024-04-11T13:14:03.598172Z", "date_published": null, "start_time": "2024-04-14T07:00:00Z", "end_time": "2024-04-14T08: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, "short_description": { "fi": "Tule mukaan muskariin, jossa nauru raikaa, laulut soivat ja lapset pääsevät tutkimaan yhdessä musiikkiopen kanssa musiikin taianomaista maailmaa!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/43B77058A7361A33508BF60FB1ED2542/LOPPUUNMYYTY_Vauvamuskarit" }, "description": { "fi": "<p>Tule mukaan muskariin, jossa nauru raikaa, laulut soivat ja lapset pääsevät tutkimaan yhdessä musiikkiopen kanssa musiikin taianomaista maailmaa!</p><p>6–18 kuukauden ikäisille lapsille soveltuva musiikkityöpaja tutustuttaa perheen pienokaiset musiikin ihastuttavaan maailmaan ja saa heidät soittamaan ja laulamaan yhdessä lasten musiikkikasvatukseen perehtyneen ammattilaisen kanssa.</p><p>Muskarin tarkoituksena on opettaa lapsille luovaa itseilmaisua ja kehittää lasten kiinnostusta musikaalisuutta kohtaan. Ryhmässä musisoiminen opettaa taaperoille myös yhteistyötä ja vuorovaikutustaitoja samalla kun se rakentaa pienokaisen ilmaisutaitoa.</p><p>Vauvamuskarit järjestetään klo 10 ja 11</p><p>Ikäsuositus: 6-18 kk lapsille aikuisen kanssa</p><p>Muskarin kesto noin 30 min</p><p>Liput 5 € (lapsi + aikuinen)</p>" }, "name": { "fi": "LOPPUUNMYYTY Vauvamuskarit – Vaippakansan karnevaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63204/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63203", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/" }, "description": null, "price": { "fi": "5 € (lapsi+aikuinen)" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12371, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T11:14:02.465066Z", "last_modified_time": "2024-03-14T11:14:02.465089Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745344.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12371/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T11:14:02.425552Z", "last_modified_time": "2024-04-11T13:14:03.518251Z", "date_published": null, "start_time": "2024-04-14T07:00:00Z", "end_time": "2024-04-14T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa värikkääseen ja iloiseen sirkustyöpajaan, jossa pienokaiset pääsevät tutustumaan sirkuksen lumoavaan maailmaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1E0F1CB0CA517EBDC688BD3D20B2607D/LOPPUUNMYYTY_Vauva-_ja_taaperosirkustyopajat" }, "description": { "fi": "<p>Tervetuloa värikkääseen ja iloiseen sirkustyöpajaan, jossa pienokaiset pääsevät tutustumaan sirkuksen lumoavaan maailmaan!</p><p>Pukinmäen sirkuskoulun opettajat ohjaavat taaperoita innostavien sirkusaktiviteettien äärellä.</p><p>Sirkustyöpajassa lapset saavat nauttia liikkeen riemusta, kokea värien lumoa ja osallistua vuorovaikutteisiin leikkeihin. Tärkeintä on ilo ja hauskuus, jotka rohkaisevat pienokaisia liikkumaan ja oppimaan uusia asioita.</p><p>Tule mukaan kokemaan sirkustaiteen lumo taaperosi kanssa!</p><p>Sirkustyöpajat Malmitalon tanssisalissa klo 10, 11, 12:15 ja 13:15</p><p>Ikäsuositukset:<br>klo 10 ja 13:15 työpajat soveltuvat parhaiten 6-18 kk ikäisille lapsille klo 11 ja 12:15: työpajat soveltuvat parhaiten 18-24 kk ikäisille lapsille</p><p>Työpajan kesto on 45 min</p><p>Lippu 5 € (lapsi + aikuinen)</p>" }, "name": { "fi": "LOPPUUNMYYTY Vauva- ja taaperosirkustyöpajat – Vaippakansan karnevaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63203/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63201", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/vaippakansan-karnevaalit/" }, "description": null, "price": { "fi": "5 € (lapsi + aikuinen)" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 12338, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-14T09:19:03.815415Z", "last_modified_time": "2024-03-14T09:19:03.815435Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745339.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/12338/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-14T09:19:03.801567Z", "last_modified_time": "2024-04-11T13:14:03.404052Z", "date_published": null, "start_time": "2024-04-14T07:00:00Z", "end_time": "2024-04-14T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5385D3121389138A2678757B60492A68/LOPPUUNMYYTY_Vauvojen_varikylvyt" }, "description": { "fi": "<p>Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi!</p><p>Pohjois-Helsingin kuvataidekoulun järjestämät moniaistilliset värikylvyt ovat vauvoille suunnattu elämyksellinen tapa tutustua kuvataiteen maailmaan. Värien, materiaalien ja sävyjen rikkaus avautuu perheen pienimmille taiteellisessa työpajassa.</p><p>Työpajan aikana vauvat saavat kokea värejä monin eri tavoin, kun heidän aistinsa ja sormensa kylpevät kirkkaissa ja eloisissa sävyissä. Vanhemmat voivat osallistua toimintaan yhdessä vauvojensa kanssa.</p><p>Vauvojen värikylvyt aina tasatunnein eli klo 10, 11, 12 ja 13.</p><p>Ikäsuositukset: <br>klo 10 ja 13 olevat työpajat sopivat parhaiten 6-18 kk ikäisille lapsille<br>klo 11 ja 12 olevat työpajat sopivat parhaiten 18-24 kk ikäisille lapsille</p><p>Työpajan kesto 45 min<br>Paikka: Taideluokka 3<br>Liput 5 € / lapsi + aikuinen</p>" }, "name": { "fi": "LOPPUUNMYYTY Vauvojen värikylvyt – Vaippakansan karnevaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63201/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:1ea8a6a1-557d-4af1-899e-0f35c8a545a6", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50610/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=Testi_Tapahtuma_Uusituilla_URL-Kentill_TL-DG-230220241820434191" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 125592, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-11T13:13:21.163560Z", "last_modified_time": "2024-04-11T13:13:21.163575Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=1ea8a6a1-557d-4af1-899e-0f35c8a545a6&Timestamp=638482365062140549&Full=true", "name": "Helsinki", "cropping": "", "photographer_name": "", "alt_text": "Helsinki", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/125592/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "created_time": "2024-04-09T05:06:26.546925Z", "last_modified_time": "2024-04-11T13:13:23.172831Z", "date_published": "2024-03-22T09:21:07Z", "start_time": "2024-04-17T21:00:00Z", "end_time": "2024-04-18T11:00:19Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-02-21T06:00:00+02:00", "enrolment_end_time": "2024-04-09T08:30:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Testi Tapahtuma Uusituilla URL-Kentillä TL-DG-21.02.2024" }, "info_url": { "fi": "https://www.hel.fi" }, "description": { "fi": "<div><div>Testi Tapahtuma Uusituilla URL-Kentillä TL-DG-21.02.2024</div></div>" }, "name": { "fi": "Testi Tapahtuma Uusituilla URL-Kentillä TL-DG-23.02.2024" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Tomi Lepistö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:1ea8a6a1-557d-4af1-899e-0f35c8a545a6/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63195", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/", "sv": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/", "en": "https://www.lippu.fi/eventseries/aloha-night-2024-3614151/" }, "description": null, "price": { "fi": "20 €", "sv": "20 €", "en": "20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 125328, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-11T12:13:44.540994Z", "last_modified_time": "2024-04-11T12:13:44.541019Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745862.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/125328/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-11T12:13:44.517194Z", "last_modified_time": "2024-04-11T12:13:44.602275Z", "date_published": null, "start_time": "2024-05-25T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tutustu Tyynenmeren saarten kulttuuriin värikkäiden tanssiesitysten saattelemana!", "en": "Come and enjoy the music and dances of Polynesia!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night", "en": "http://www.malmitalo.fi/en/events/event/9BE58BAD9E63834CBE79E3AFF1BD7A72/Aloha_Night" }, "description": { "fi": "<p>Tutustu Tyynenmeren saarten kulttuuriin värikkäiden tanssiesitysten saattelemana!</p><p>Ukulelen soinnut, hypnoottiset rummut ja kaislahameiden kahina vievät mielen paratiisisaarille palmujen katveeseen.</p><p>Aloha Nightissa näet perinteisiä tansseja mm. Havaijilta, Tahitilta, Cookin saarilta, Tongalta ja Samoalta.</p><p>Tanssitapahtumalla kerätään varoja kehitysprojektia varten.</p><p>Järjestäjä: PIFS: Tyynenmeren Saarten Ystävyysseura ry</p>", "en": "<p>Come and enjoy the music and dances of Polynesia!</p><p>Our “Aloha Night” is the only event that showcases the exotic, hypnotic and colourful dances from the Pacific Islands such as Cook Islands, Hawaii, Samoa, Tahiti and Tonga. It is our fund-raising event for our future Development Project in the Pacific.</p>" }, "name": { "fi": "Aloha Night – Polynesian Dance Show", "sv": "Aloha Night – Polynesian Dance Show", "en": "Aloha Night – Polynesian Dance Show" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63195/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63332", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 125327, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-11T12:13:42.654868Z", "last_modified_time": "2024-04-11T12:13:42.654896Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749048.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/125327/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-11T12:13:42.630681Z", "last_modified_time": "2024-04-11T12:13:42.717625Z", "date_published": null, "start_time": "2024-05-16T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa seuraamaan, miten viikingit tykittävät niin pelialustoilla kuin näyttämölläkin!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BDB729D4581CFEB69DD002AEA5557094/Game_over" }, "description": { "fi": "<p>Tervetuloa seuraamaan, miten viikingit tykittävät niin pelialustoilla kuin näyttämölläkin!</p><p>Sunolandon pitkäkyntiset ovat soluttautuneet Suomeen ja havittelevat vaurauksia. Agentit puuttuvat peliin ja poliisit pinkovat rikollisten perässä. Milloin peli päättyy?</p><p>Ohjaus: Mari Martela <br>Apulaisohjaajat: Lotta Lahti-Nuuttila ja Matilda Oinas 9D<br>Käsikirjoitus ja ideointi Mari Martela ja oppilaat<br>Lavastus ja puvustus: Anne Mäkelä ja oppilaat<br>Tanssin ja koreografian ohjaus: Laura Yrttimaa<br>Musiikin ohjaus, biisit ja sanoitukset: Marianne Ojala<br>Viidesluokkalaisten esityksen valmistelu: Marika Ojala</p><p>Kesto noin tunti, ei väliaikaa.<br>Vapaa pääsy, ohjelma 10 euroa (tuotto menee oppilaiden draamatyöskentelyn hyväksi)</p>" }, "name": { "fi": "Game over – Kannelmäen peruskoulun näytös" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63332/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4omni", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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-04-11T09:49:04.413867Z", "last_modified_time": "2024-04-11T09:49:04.413891Z", "date_published": "2024-04-11T10:00:47.639000Z", "start_time": "2024-05-29T06:30:00Z", "end_time": "2024-05-29T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>" }, "name": { "fi": "MLL-perhekahvila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Perhealue" }, "provider": { "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omni/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4omqm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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-04-11T09:49:04.168588Z", "last_modified_time": "2024-04-11T09:49:04.168614Z", "date_published": "2024-04-11T10:00:47.639000Z", "start_time": "2024-05-22T06:30:00Z", "end_time": "2024-05-22T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>" }, "name": { "fi": "MLL-perhekahvila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Perhealue" }, "provider": { "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omqm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4omtu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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-04-11T09:49:03.898716Z", "last_modified_time": "2024-04-11T09:49:03.898747Z", "date_published": "2024-04-11T10:00:47.639000Z", "start_time": "2024-05-15T06:30:00Z", "end_time": "2024-05-15T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>" }, "name": { "fi": "MLL-perhekahvila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Perhealue" }, "provider": { "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omtu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4omxm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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-04-11T09:49:03.702098Z", "last_modified_time": "2024-04-11T09:49:03.702128Z", "date_published": "2024-04-11T10:00:47.639000Z", "start_time": "2024-05-08T06:30:00Z", "end_time": "2024-05-08T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>" }, "name": { "fi": "MLL-perhekahvila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Perhealue" }, "provider": { "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omxm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4om3q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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-04-11T09:49:03.301228Z", "last_modified_time": "2024-04-11T09:49:03.301260Z", "date_published": "2024-04-11T10:00:47.639000Z", "start_time": "2024-04-24T06:30:00Z", "end_time": "2024-04-24T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>" }, "name": { "fi": "MLL-perhekahvila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Perhealue" }, "provider": { "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om3q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4om7q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omtu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4omxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om3q/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-04-11T09:49:02.188528Z", "last_modified_time": "2024-04-11T09:49:02.188558Z", "date_published": "2024-04-11T10:00:47.639000Z", "start_time": "2024-04-24T06:30:00Z", "end_time": "2024-05-29T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Lippulaivan perhekahvilaan keskiviikkoisin klo 9.30 - 11.00!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!<br>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää<br>lapselle leikkiseuraa ja ihan vain hengähtää hetken.<br>MLL Soukan yhdistys käynnistää uuden perhekahvilan Lippulaivan<br>kirjaston perhetilassa 17.4. klo 9.30 - 11.00 alkaen joka keskiviikko.<br>Keväälle suunniteltu mm. kirjaston loruhetki 22.5.<br>Tarjolla pientä purtavaa.</p>" }, "name": { "fi": "MLL-perhekahvila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Perhealue" }, "provider": { "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4om7q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4onc4", "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: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-11T09:21:20.460407Z", "last_modified_time": "2024-04-11T09:21:20.460431Z", "date_published": "2024-04-11T07:27:00Z", "start_time": "2024-06-19T13:00:00Z", "end_time": "2024-06-19T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Viihdeorkesteri JarmosBand tempaa mukaansa tanssin pyörteisiin.", "sv": "Underhållningsorkestern JarmosBand sveper med dig in i dansens virvlar.", "en": "The entertainment orchestra JarmosBand sweeps you into the whirlwind of dance." }, "info_url": null, "description": { "fi": "<p>Viihdeorkesteri JarmosBand tempaa mukaansa tanssin pyörteisiin.</p>", "sv": "<p>Underhållningsorkestern JarmosBand sveper med dig in i dansens virvlar.</p>", "en": "<p>The entertainment orchestra JarmosBand sweeps you into the whirlwind of dance.</p>" }, "name": { "fi": "Juhannustanssit", "sv": "Midsommar danser", "en": "Midsummer dances" }, "provider_contact_info": null, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onc4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63115", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://web.lippu.fi/palautus/" }, "description": null, "price": { "fi": "28,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11098, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-28T10:14:03.998662Z", "last_modified_time": "2024-02-28T10:14:03.998684Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745007.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11098/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-28T10:14:03.956582Z", "last_modified_time": "2024-04-11T09:12:54.213653Z", "date_published": null, "start_time": "2024-04-13T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/2517B5833773F976BC7C7366F0E830B8/Visa_-_Karim_Gharbi" }, "description": { "fi": "<p><b>La 13.4.2024 Visa - Karim Gharbi -esitys Savoy-teatterissa on peruttu.</b></p><p>Jo maksetuista lipuista tulee hakea rahanpalautusta sunnuntaihin 21.4.2024 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.</p><p>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Baltimex Events sekä Savoy-teatteri ja Lippupiste pahoittelevat peruuntumisesta aiheutuvaa harmia.</p><p>****</p><p>Arabiankielinen stand up show</p><p>Ikäsuositus: 4+</p><p>Kesto n. 2 h, ei väliaikaa</p>" }, "name": { "fi": "Visa - Karim Gharbi – TAPAHTUMA ON PERUTTU!" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Baltimex Events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63115/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoc4onhe", "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: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:p2771/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4or2y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-15T13:10:53.160249Z", "last_modified_time": "2024-04-11T05:47:31.371274Z", "date_published": "2024-03-19T23:00:00Z", "start_time": "2024-04-14T07:00:00Z", "end_time": "2024-04-14T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta.", "sv": "Ett intressant och underhållande program om en mer hållbar livsstil.", "en": "An interesting and entertaining program about a more sustainable lifestyle. " }, "info_url": null, "description": { "fi": "<p>Toista kertaa toteutettava Espoon kirjastojen Ympäristökevät sisältää taas kiinnostavaa sekä viihdyttävää ohjelmaa kestävämmästä elämäntavasta. Esitysten sisällöistä vastaavat HSY, Omnia, Luontoliitto, Kestävän kehityksen osaamiskeskus, Villa Elfvik sekä Espoon ympäristöyhdistys. Ohjelma sijoittuu viiteen kirjastoon. </p><p>Entresse </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat Entressen kirjastoon yhteisnäyttelyn. Näyttelyssä kerrotaan hulevedestä ja siitä, miten se liittyy Itämeren roskaantumiseen. Omnia esittelee huleveden hyödyntämistä pihoissa ja puutarhoissa. Toinen osa näyttelystä kertoo typpikuormasta, eli kuinka liiallinen proteiinin syönti rehevöittää Itämerta. Omnian opiskelijat esittelevät proteiinipitoisten kasvien kaupunkiviljelyä. Näyttely on esillä Entressen kirjastossa 8.-29.4. </p><p>Lumoudu kaupunkiluonnosta -näyttely. 8. - 14.4. Järjestää Villa Elfvik. Lumoudu kaupunkiluonnosta -näyttely esittelee luontotekoja, joiden avulla voit auttaa luonnonkirjoa säilyttämään loistonsa. Pysäytetään yhdessä luontokato! </p><p>Tunnista pörriäiset. Ti 9.4. klo 17. Esityksen Entressen kirjaston Estradilla järjestää Espoon ympäristöyhdistys. Opitaan tunnistamaan kimalaiset ja muutkin kukissa pörräävät ötökät. </p><p>Luontoliiton Kevätseuranta ja tutustumista lepakonpönttöihin. Ke 10.4. klo 13-18. Kevätseuranta on tutkimusmatka kasvi- ja eläinlajien avulla kevään ihmeisiin. Kevätseurannan teemana vuonna 2024 on muuttuva metsä. Tule tutustumaan lähikirjastollesi Kevätseurannan lajeihin ja osallistumaan keväisiin haasteisiin. Järjestämme kirjastolla lisäksi lepankonpönttöihin tutustumista yhdessä Omnian kanssa. Tiesitkö, että Suomessa elää yhteensä yhdeksän eri lepakkolajia, jotka kaikki ovat rauhoitettuja. </p><p>Hulevesi- ja roskakävely. Ke 10.4. klo 17.00 lähdemme liikkeelle Entressen kirjastosta. Tule mukaan hulevesi- ja roskakävelylle! Kävelylle nappaamme mukaan roskienkeruuvälineet. Matkan varrella kuulemme ja keskustelemme yleisesti hulevedestä, sen hallinnasta ja laadusta, sekä siitä, miten hulevesi liittyy roskiin ja vesistöjen roskaantumiseen. Kävelemme Entressestä kohti Espoonjokea keräten samalla roskia. Kävelyn kesto on noin 1,5 tuntia. Tapahtuman järjestää HSY yhteistyössä Espoon kaupungin kanssa. </p><p>Lippulaiva </p><p>Energiakiertokävelyt Lippulaivassa ti 9.4. klo 12–13 ja ke 10.4. klo 16–17. Ilmoittaudu mukaan https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Espoon kaupungin energiailtama<br>ke 10.4. klo 17–19.30. Katso lisätiedot ja tarkempi ohjelma https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p><br>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 10. - 24.6. </p><p>Sello </p><p>Energiakiertokävelyt Sellossa to 11.4. klo 12–13.30 ja 16–17.30.<br>Ilmoittaudu mukaan:https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 24.6. - 15.7. </p><p>Iso Omena </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 29.4.-18.5. </p><p>Tapiola </p><p>Näyttely hulevesistä, typpikuormasta ja kaupunkiviljelystä. Helsingin seudun ympäristöpalvelut HSY ja Espoon seudun koulutuskuntayhtymä Omnia tuovat kirjastoon yhteisnäyttelyn. Näyttely on esillä 20.5. - 10.6. </p>", "sv": "<p>Esbobibliotekens Miljövår, som hålls för andra gången, innehåller återigen ett intressant och underhållande program om en mer hållbar livsstil. HRM, Omnia, Luontoliitto, Centrum för hållbar utveckling, Villa Elfvik och Esbo Miljöförening ansvarar för innehållet i presentationerna. Programmet äger rum på fem bibliotek.</p><p>Entresse</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med en gemensam utställning till Entresse bibliotek. Utställningen berättar om dagvatten och hur det är relaterat till nedskräpningen av Östersjön. Omnia presenterar användningen av dagvatten i gårdar och trädgårdar. Den andra delen av utställningen berättar om kvävebelastningen, det vill säga hur överdriven proteinkonsumtion gör Östersjön frodig. Omnias elever presenterar urban odling av proteinrika växter. Utställningen visas på Entresse bibliotek 8-29 april.</p><p>Bli förtrollad av urban naturutställning. 8. - 14.4. Arrangeras av Villa Elfvik. Utställningen \"Bli förtrollad av urban natur\" visar verk av naturen som du kan använda för att hjälpa naturen att bevara sin prakt. Låt oss tillsammans stoppa naturens förstörelse!</p><p>Identifiera pälsen. Tis 9.4. kl 17. Föreställningen arrangeras av Esbo miljöförening på Entresse biblioteks Estradi. Låt oss lära oss att identifiera humlor och andra insekter som surrar runt blommor.</p><p>Luontoliittos Vårövervakning och bekantskap med fladdermusen. Ons 10.4. från 13:00 till 18:00. Kevätseuranta är ett utforskande av vårens under med hjälp av växt- och djurarter. Temat för vårbevakningen 2024 är den föränderliga skogen. Kom till ditt lokala bibliotek för att lära känna Våruppföljningens sporter och delta i vårens utmaningar. På biblioteket anordnar vi även en introduktion till fladdermushus tillsammans med Omnia. Visste du att totalt nio olika arter av fladdermöss lever i Finland, som alla är fridlysta.</p><p>Dagvatten och sopvandring. Ons 10.4. kl 17:00 går vi från Entresse bibliotek. Följ med till dagvatten och sopvandring! Till promenaden tar vi med oss sophämtningsutrustningen. Längs vägen kommer vi att höra och diskutera dagvatten i stort, dess hantering och kvalitet samt hur dagvatten är relaterat till sopor och nedskräpning av vattendrag. Vi går från Entresse mot Esbo å och samlar samtidigt sopor. Vandringens längd är ca 1,5 timme. Evenemanget arrangeras av HRM i samarbete med Esbo stad.</p><p>Lippulaiva</p><p>Energicykelvandringar i flaggskeppet tis 9.4. 12–13 och ons 10.4. kl 16–17. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energikväll i Esbo stad Ons 10.4. från 17:00 till 19:30. Se ytterligare information och ett mer detaljerat program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas 10-24 juni.</p><p>Sello</p><p>Energicykelvandringar i Sello tors 11.4. från 12:00 till 13:30 och från 16:00 till 17:30. Bli Medlem https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 24.6. - 15.7.</p><p>Iso Omena</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas från 29 april till 18 maj.</p><p>Tapiola</p><p>En utställning om dagvatten, kvävebelastning och stadsodling. Helsingforsregionens miljötjänster HRM och Esboregionens utbildningskommunförbund Omnia tar med sig en gemensam utställning till biblioteket. Utställningen visas den 20.5. - 10.6.</p>", "en": "<p>The Espoo libraries' Environmental Spring, which will be held for the second time, again contains an interesting and entertaining program about a more sustainable lifestyle. HSY, Omnia, Luontoliitto, Center for Sustainable Development, Villa Elfvik and the Espoo Environmental Association are responsible for the content of the presentations. The program takes place in five libraries.</p><p>Entresse</p><p>Exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's educational municipality association Omnia are bringing a joint exhibition to the Entresse library. The exhibition tells about stormwater and how it is related to the littering of the Baltic Sea. Omnia presents the use of stormwater in yards and gardens. The second part of the exhibition tells about the nitrogen load, i.e. how excessive protein consumption makes the Baltic Sea lush. Omnia's students present the urban cultivation of protein-rich plants. The exhibition is on display at the Entresse library from 8 to 29 April.</p><p>Be enchanted by urban nature exhibition. 8. - 14.4. Organized by Villa Elfvik. The \"Be enchanted by urban nature\" exhibition presents works of nature that you can use to help the natural world preserve its splendor. Let's stop the destruction of nature together!</p><p>Identify the furries. Tue 9.4. at 5 p.m. The performance is organized by Espoo's environmental association at Entresse library's Estrada. Let's learn to identify bumblebees and other insects that buzz around flowers.</p><p>The Finnish Nature Association's Kevätseuranta and getting to know the bat roosts Wed 10.4. from 13:00 to 18:00. Kevätseuranta is an exploration of the wonders of spring with the help of plant and animal species. The theme of spring monitoring in 2024 is the changing forest. Come to your local library to get to know the sports of Spring Follow-up and participate in the spring challenges. In the library, we also organize an introduction to bat houses together with Omnia. Did you know that a total of nine different species of bats live in Finland, all of which are protected.</p><p>Stormwater and trash walk. Wed 10.4. at 17:00 we leave from Entresse library. Come along to the stormwater and trash walk! For the walk, we take the garbage collection equipment with us. Along the way, we will hear and discuss stormwater in general, its management and quality, as well as how stormwater is related to garbage and littering of waterways. We walk from Entresse towards the Espoonjoki, collecting garbage at the same time. The duration of the walk is about 1.5 hours. The event is organized by HSY in cooperation with the city of Espoo.</p><p>Lippulaiva</p><p>Energy cycle walks in Flagship Tue 9.4. 12–13 and Wed 10.4. at 16–17. sign up https://link.webropolsurveys.com/EventParticipation/EventPublic/b4716359-445d-4203-8e65-575fc11e28b9?displayId=Fin3048564.</p><p>Energy evening of the city of Espoo<br>Wed 10.4. from 17:00 to 19:30. See additional information and a more detailed program https://www.espoo.fi/fi/tapahtumat/espooevents:aghedqjpfi</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 10 to 24 June.</p><p>Sello</p><p>Energy cycle walks in Sello Thu 11.4. from 12:00 p.m. to 1:30 p.m. and from 4:00 p.m. to 5:30 p.m.<br>Sign up: https://link.webropolsurveys.com/EventParticipation/EventPublic/abd71427-6827-4987-a1f6-ed55dbc7e007?displayId=Fin3048505.</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 24.6. - 15.7.</p><p>Iso Omena</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition is on display from 29 April to 18 May.</p><p> Tapiola</p><p>An exhibition about stormwater, nitrogen load and urban farming. The Helsinki region's environmental services HSY and the Espoo region's education municipality association Omnia bring a joint exhibition to the library. The exhibition will be on display on 20.5. - 10.6.</p>" }, "name": { "fi": "Espoon kirjastojen Ympäristökevät", "sv": "Esbobibliotekens Miljövår", "en": "The Espoo libraries' Environmental Spring" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4onhe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }