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=317&weekday=6%2C7
{ "meta": { "count": 6457, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=318&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=316&weekday=6%2C7" }, "data": [ { "id": "helmet:267249", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8154/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11777/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3768, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-30T08:27:07.894128Z", "last_modified_time": "2023-08-30T08:27:07.894148Z", "url": "https://www.helmet.fi/download/noname/{3DE3617F-772E-4EC5-BD88-41F2E4E3CA2B}/105343", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3768/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-30T09:27:40.530985Z", "last_modified_time": "2023-09-23T20:18:00.771556Z", "date_published": "2023-08-30T08:46:28.483000Z", "start_time": "2023-09-23T11:00:00Z", "end_time": "2023-09-23T12: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": "Perheille suunnattu satuhetki ja askartelua englanniksi.", "en": "Storytelling event and lantern-making craft for children and families." }, "info_url": null, "description": { "fi": "<p>Tervetuloa kuuntelemaan keskisyksyn juhlaan liittyvää satua englanniksi! Kirjailija Christina Matula lukee kirjansa The Shadow in the Moon, jonka jälkeen askarrelaan paperilyhtyjä.</p><p>Lauantaina 23.9. klo 14.00.</p><p>Christina Matula on kanadalainen lastenkirjailija, joka asuu Helsingissä. Hän rakastaa kertoa tarinoita, joiden insipiraationlähteenä on hänen taiwanilainen perimänsä.</p><p>Celebrate Mid-Autumn Festival with a story about mooncakes and the Chinese tale of the archer and the Lady in the Moon. This will be followed by a lantern-making craft.</p><p>Saturday 23.9.2023 at 14.00</p><p>Christina Matula is a Canadian children's author living in Helsinki. She loves sharing stories inspired by her mixed Taiwanese heritage. Red bean is her favourite type of mooncake.</p>", "en": "<p>Celebrate Mid-Autumn Festival with a story about mooncakes and the Chinese tale of the archer and the Lady in the Moon. This will be followed by a lantern-making craft.</p><p>Saturday 23.9.2023 at 14.00</p><p>Christina Matula is a Canadian children's author living in Helsinki. She loves sharing stories inspired by her mixed Taiwanese heritage. Red bean is her favourite type of mooncake.</p>" }, "name": { "fi": "The Shadow in the Moon - Satuhetki kirjailijan kanssa", "en": "The Shadow in the Moon - Storytelling event with the Author" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267249/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267558", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8362/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10830/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3838, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-01T10:29:45.366681Z", "last_modified_time": "2023-09-01T10:29:45.366704Z", "url": "https://www.helmet.fi/download/noname/{6D2EF253-46CC-49C7-98B3-1B60FC13F667}/105477", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3838/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-01T10:29:44.300125Z", "last_modified_time": "2023-09-23T20:17:57.768953Z", "date_published": "2023-09-01T09:00:00Z", "start_time": "2023-09-23T07:00:00Z", "end_time": "2023-09-23T11: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": "Koko perheen tapahtuma kierrätys-teemalla!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa kierrätys-teemaiseen koko perheen tapahtumaan! </p><p> <br> Ohjelma: <br> 10.30 Satutuokio <br> 11-14 Askartelua kierrätysmateriaaleista (ikäsuositus 6+) <br> 13.30 Roskakierros kirjaston lähellä (säävarauksella) </p><p>Lisäksi tapahtumassa on itsenäistä puuhaa: värityskuvia, roskien lajittelu -leikki sekä kirjanäyttelyt lapsille ja aikuisille.</p>" }, "name": { "fi": "Perhepäivä: Roskan elämää" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267558/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267660", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18262/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3856, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-04T11:29:57.672063Z", "last_modified_time": "2023-09-04T11:29:57.672088Z", "url": "https://www.helmet.fi/download/noname/{404D991E-7704-4DD0-BCBB-5A78854AA10F}/105532", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3856/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-04T11:29:57.103389Z", "last_modified_time": "2023-09-23T20:17:51.869725Z", "date_published": "2023-09-04T10:39:00Z", "start_time": "2023-09-23T06:45:00Z", "end_time": "2023-09-23T07:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Pikkulin laululeikkishowhun!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa laulamaan ja leikkimään yhdessä Pikkulin kanssa Lumon kirjastoon! Pikkuli touhuaa mukana koko shown ajan. Saamme kuulla esimerkiksi millaisia kavereita Pikkulilla on ja mitä he tykkäävät leikkiä yhdessä.</p><p> Laulusta ja leikityksestä vastaavat Pikkuli-hahmo sekä Pikkulin tekijät Metsämarja ja Antti Aittokoski. Tapaa Pikku Kakkosestakin tuttu Pikkuli-hahmo konsertin jälkeen! </p><p> Tapahtuman mahdollistaa aluehallintoviraston rahoittama “Makuja kielelle – lukuintoa lapsiperheille” -hanke </p><p>Asiasana: \"lastenkulttuuri\"</p><p> <em>Kuva: Pasi Leino</em> </p>" }, "name": { "fi": "Pikkulin laululeikkishow" }, "provider_contact_info": null, "location_extra_info": { "fi": "ravintola Villiankka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267660/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266499", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8289/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3541, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-23T15:25:48.166835Z", "last_modified_time": "2023-08-23T15:25:48.166858Z", "url": "https://www.helmet.fi/download/noname/{DA7A6CDD-EE38-486E-BF28-5F944E43C8EE}/105197", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3541/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-23T15:25:46.383285Z", "last_modified_time": "2023-09-23T13:25:08.471468Z", "date_published": "2023-08-23T14:00:00Z", "start_time": "2023-09-09T07:00:00Z", "end_time": "2023-09-09T11: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 Vaahteramäen Eemelin syntymäpäiville!" }, "info_url": null, "description": { "fi": "<p>Tarinoita Eemelistä on luettu 60 vuoden ajan ja niinpä juhlimme nyt Eemelin syntymäpäivää!</p><p>Syntymäpäivillä luetaan Eemelin metkuista (klo 11 ja 13), ja askarrellaan ja tehdään muuta mukavaa. Mehutarjoilu!</p><p> <em>Kuva: The Astrid Lindgren Company tm / Bildmakarna Berg / Björn Berg</em> </p>" }, "name": { "fi": "Vaahteramäen Eemelin syntymäpäiväjuhlat" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266499/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268083", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12031/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4729, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-12T08:29:59.346660Z", "last_modified_time": "2023-09-12T08:29:59.346683Z", "url": "https://www.helmet.fi/download/noname/{496B0D8F-B244-4684-B26F-E62DCD0E5EA4}/105744", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-12T08:29:58.557991Z", "last_modified_time": "2023-09-23T11:05:44.792223Z", "date_published": "2023-09-12T07:49:00Z", "start_time": "2023-09-23T08:00:00Z", "end_time": "2023-09-23T11: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 tutustumaan Mullankumous -infopisteelle! Paikalla ympäristöneuvoja vastaamassa lajitteluaiheisiin kysymyksiin." }, "info_url": null, "description": { "fi": "<p>Lauantaina 23.9. klo 11-14 pääset kirjastossamme pelaamaan lajitteluaiheista<br> Tehtävä tulevaisuudesta -pakopeliä. Paikalla on myös ympäristöneuvoja vastaamassa lajitteluaiheisiin kysymyksiin. Tapahtuma on kaikille avoin ja maksuton.</p><p> <a href=\"https://www.helmet.fi/fi-FI/content/268080/11277\">HSY:n Mullankumous-infopiste opastaa biojätteen lajitteluun Hakunilan kirjastossa 23.9. -12.10.</a> <br> Tervetuloa tutustumaan!</p>" }, "name": { "fi": "HSY Mullankumous - Tehtävä tulevaisuudesta" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7lna", "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/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2023-09-21T07:49:23.304812Z", "last_modified_time": "2023-09-22T07:01:36.267605Z", "date_published": null, "start_time": "2023-10-14T08:00:00Z", "end_time": "2023-10-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": "Espoon barokki järjestää Sanojen ja sävelten meri-lastenkirjallisuutta ja barokkimusiikkia esityksen Lippulaivan kirjastossa. Vapaa pääsy. Tervetuloa!", "en": "Espoon barokki organizes childresn literature and baroque music event in Lippulaiva library. The event is open for everyone and free to attend." }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lippulaivan_kirjasto/Tapahtumat/Espoon_barokki_Sanojen_ja_savelten_meri_(260266)" }, "description": { "fi": "<p>Espoon barokki järjestää Sanojen ja sävelten meri-lastenkirjallisuutta ja barokkimusiikkia esityksen Lippulaivan kirjastossa. Vapaa pääsy. Tervetuloa!</p><p>Esiintyjät:</p><p>Minna Nyberg, sopraano ja lausunta</p><p>Hanna Haapamäki, nokkahuilu ja traverso</p><p>Elina Mattila, sello</p><p>Laura Vihreäpuu, cembalo</p>", "en": "<p>Espoon barokki organizes Sanojen ja sävelten meri - childrens literature and baroque music event in Lippulaiva library. The event is open for everyone and free to attend.<br>Performers:</p><p>Minna Nyberg, soprano and reading</p><p>Hanna Haapamäki, fipple flute and traverso</p><p>Elina Mattila, Cello</p><p>Laura Vihreäpuu, harpsichord</p>" }, "name": { "fi": "Espoon barokki: Sanojen ja sävelten meri - lastenkirjallisuutta ja barokkimusiikkia", "en": "Espoon barokki: Sanojen ja sävelten meri - childrens literature and baroque music" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Espoon barokki ja Lippulaivan kirjasto", "en": "Espoon barokki ja Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7lna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7lqy", "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/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?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": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2023-09-21T07:52:44.795709Z", "last_modified_time": "2023-09-22T06:59:44.981403Z", "date_published": null, "start_time": "2023-10-14T10:00:00Z", "end_time": "2023-10-14T10: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": "Espoon barokki järjestää Sanojen ja sävelten meri-kirjallisuutta ja barokkimusiikkia esityksen Lippulaivan kirjastossa. Vapaa pääsy. Tervetuloa!", "en": "Espoon barokki organizes literature and baroque music event in Lippulaiva library. The event is open for everyone and free to attend." }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lippulaivan_kirjasto/Tapahtumat/Espoon_barokki_Sanojen_ja_savelten_meri_(260271)" }, "description": { "fi": "<p>Espoon barokki järjestää Sanojen ja sävelten meri-kirjallisuutta ja barokkimusiikkia esityksen Lippulaivan kirjastossa. Vapaa pääsy. Tervetuloa!</p><p>Esiintyjät:</p><p>Minna Nyberg, sopraano ja lausunta</p><p>Hanna Haapamäki, nokkahuilu ja traverso</p><p>Elina Mattila, sello</p><p>Laura Vihreäpuu, cembalo</p>", "en": "<p>Espoon barokki organizes Sanojen ja sävelten meri - literature and baroque music event in Lippulaiva library. The event is open for everyone and free to attend.<br>Performers:</p><p>Minna Nyberg, soprano and reading</p><p>Hanna Haapamäki, fipple flute and traverso</p><p>Elina Mattila, Cello</p><p>Laura Vihreäpuu, harpsichord</p>" }, "name": { "fi": "Espoon barokki: Sanojen ja sävelten meri - kirjallisuutta ja barokkimusiikkia", "en": "Espoon barokki: Sanojen ja sävelten meri - literature and baroque music" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Espoon barokki ja Lippulaivan kirjasto", "en": "Espoon barokki ja Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7lqy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agflfxyi3q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:10/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?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": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:59/?format=api" } ], "created_time": "2023-09-20T13:54:35.881975Z", "last_modified_time": "2023-09-21T08:06:40.555050Z", "date_published": null, "start_time": "2023-09-21T08:06:40.268000Z", "end_time": "2023-09-24T10: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": "2023-09-20T18:00:00+03:00", "enrolment_end_time": "2023-09-23T12:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Test 2023-09-20T17:44", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "<p>Alkuperäinen nimi: Test 2023-09-20T16:53</p>\n<p>Nimi vaihdettu: Test 2023-09-20T17:44 kun tapahtuman julkaisu saatiin korjattua.</p>\n", "sv": "", "en": "" }, "name": { "fi": "Test 2023-09-20T17:44", "sv": "", "en": "" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agflfxyi3q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266018", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:51342/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11893/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3474, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-18T12:35:16.473304Z", "last_modified_time": "2023-08-18T12:35:16.473326Z", "url": "https://www.helmet.fi/download/noname/{3A3F7179-9266-495E-BFDB-90FBED836F2B}/105083", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3474/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-18T12:35:15.483668Z", "last_modified_time": "2023-09-19T11:15:20.893450Z", "date_published": "2023-08-18T11:26:16.057000Z", "start_time": "2023-09-02T10:00:00Z", "end_time": "2023-09-02T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa viettämään tietokirjaviikkoa toiminnallisiin työpajoihin!" }, "info_url": null, "description": { "fi": "<p> </p> <strong>Lauantaina 2.9.2023 klo 13, klo 14 ja klo 15</strong> Tietokirjaviikon lauantaina Suomen tietokirjailijat järjestää kolme toiminnallista työpajaa perheen pienimmille klo 13, klo 14 ja klo 15. Työpajoissa askarrellaan mm. karkkikoru, jogurttipurkkipuhelin ja tutustutaan koirien tunteisiin. Vetäjinä toimivat lastentietokirjailijat. Työpajat pidetään <strong>keskustakirjasto Oodin lasten tapahtumatilassa, 3. krs</strong>. Työpajoihin voi osallistua myös vain osaksi aikaa ja niihin voi liittyä vapaasti koko työpajan ajan. Kaikki askartelumateriaalit tarjotaan osallistujille. Vapaa pääsy, tervetuloa! </p> <strong>Klo 13–13.45 Miten koira hymyilee? </strong> Tutustu koiran tunteisiin tekemisen kautta. Non-stop paperityöpajassa askarrellaan koiria eri tunnetiloissa. Työpajan ohjaa kuvittaja ja lastenkirjailija Sari Airola, ja se perustuu Airolan lasten tietokirjaan Vuh vuh! Kaneli ja kaverit (Teos, 2019). Paperityöpaja sopii parhaiten 3–6-vuotiaille.</p> <strong>Klo 14–14.45 Telefoonityöpaja</strong> Telefoonityöpajassa askarrellaan jogurttipurkkipuhelimia ja tutustutaan puhelimen historiaan. Työpajan ohjaa kuvittaja ja kirjailija Pinja Meretoja. Työpaja perustuu Meretojan lasten tietokirjaan Aikamatka. Miten telefoonista tuli älykäs (Tammi, 2022). Telefoonityöpaja sopii parhaiten 4–8-vuotiaille.</p> <strong>Klo 15–15.45 Karkkityöpaja</strong> Karkkityöpajassa pujotellaan karkeista oma karkkikoru. Työpajassa voi myös tutkia lasten tietokirjaa Timanttia tietoa. Karkkikirjan ihmeellisiä tietoja (WSOY, 2019). Työpajan ohjaa lastenkirjailija Vuokko Hurme ja se sopii parhaiten n. 5–12-vuotiaille. </p> Työpajat ovat osa tietokirjaviikkoa. Kuva: Shutterstock" }, "name": { "fi": "Karkkikoruja, telefooneja ja koirien tunteita – Työpajat perheen pienimmille" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lasten tapahtumatila, 3.krs" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266018/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264938", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8269/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10831/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2694, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:29:36.360786Z", "last_modified_time": "2023-08-15T15:29:36.360809Z", "url": "https://www.helmet.fi/download/noname/{3BD440DA-CB37-4482-A16B-01A5AE765C60}/104777", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2694/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:29:36.121863Z", "last_modified_time": "2023-09-19T11:12:15.523388Z", "date_published": "2023-08-08T11:17:00Z", "start_time": "2023-08-19T09:00:00Z", "end_time": "2023-08-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": "Kutsumme sinut mukaan juhlistamaan kanssamme Kunda Kids Kulttuuripäivää, joka on tapahtuma kaikenikäisille lapsille ja heidän perheilleen. We invite you to join us in celebrating our FALA Live Event themed \"Kunda Kids Culture Day Experience\"." }, "info_url": null, "description": { "fi": "<p>Kutsumme sinut mukaan juhlistamaan kanssamme Kunda Kids Kulttuuripäivää, joka on tapahtuma kaikenikäisille lapsille ja heidän perheilleen. Vuoden 2023 tapahtuma on saanut inspiraationsa englantilaisen Kunda Kids kustantamon lastenkirjasta \"Sarai's Culture Day\" ja se juhlistaa afrikkalaista kulttuuriperimää. </p><p>Tapahtumassa on monipuolista ohjelmaa lapsille, esityksiä sekä myynnissä kirjoja. Tapahtuman tarkempi ohjelma julkaistaan myöhemmin tapahtuman seinällä. </p><p>Jos sinulla on afrikkalaista kulttuuriperintöä juhlistava asu, niin pue se päällesi ja vietä hauska päivä kanssamme! </p><p>Päivämäärä: Lauantai, 19.8.2023<br> Aika: 12:00-17:00<br> Paikka: Pasilan Kirjasto, Kellosilta 9 00520 Helsinki</p><p>OHJELMASSA<br> - Esityksiä<br> - Kunda Kids lukuhetki (englanninkielinen)<br> - Lasten lukuhetki portugaliksi ja espanjaksi <br> - Kunda Kids lasten kirjojen myyjäiset<br> - muuta hauskaa aktiviteettia lapsille</p><p>Muu ohjelma ja tarkka aikataulu vahvistuvat myöhemmin.</p><p>Lue lisää Kunda Kids:istä https://kundakids.com/</p><p>Tapahtuma järjestetään yhteistyössä kirjakustantamo Kunda Kids:in, Belingual -hankkeen ja Ninho ry:n kanssa. Tapahtumaa rahoittavat Helsingin Kaupunki ja Moniheli ry. Tapahtuma kuuluu Suomen Afrikka-Seuran hallinnoiman FALA (Finnish African Literature and Arts) -hankkeen toimintaan.</p><p>Tapahtumapaikan puitteet tarjoaa Kulttuurinen moninaisuus ja kirjastot läntisellä alueella -hanke ja Pasilan kirjasto.</p><p>Lisätietoa:<br><a href=\"mailto:kativertio@finnishafrican.com\">kativertio@finnishafrican.com</a><br><a href=\"mailto:sarah.laaru@finnishafrican.com\">sarah.laaru@finnishafrican.com</a></p><p>-----------------------------</p><p>We invite you to join us in celebrating our FALA Live Event themed \"Kunda Kids Culture Day Experience\". This year's celebration is inspired by the children's book \"Sarai Culture Day\" by Kunda Kids. This event is a family event and designed for children of all ages and it celebrates the rich African cultural heriatge. There will be cultural performances, book sales and many fun-filled activities for all. <br> Come dressed in your traditional attire/outfit and showcase your rich African heritage.</p><p>Date: Saturday 19th August<br> Time: 12:00-17:00<br> Place: Pasila Library, Kellosilta 9, 00520 Helsinki</p><p>IN THE PROGRAM:<br> - Performances<br> - Kunda Kids Book Reading (in English)<br> - Book Reading in Portuguese and Spanish<br> - Other fun things for kids</p><p>Read more about Kunda Kids: https://kundakids.com/</p><p>The event is organized in partnership with Kunda Kids, Belingual ry, Ninho ry and funded by Moniheli ry and Helsinki City. It is hosted in partnership with Pasila Multicultural Library and Cultural Diversity in Libraries in Western Helsinki project. The event is part of FALA (Finnish African Literature and Arts) project by Finnish-African Society.</p><p>For more information<br><a href=\"mailto:kativertio@finnishafrican.com\">kativertio@finnishafrican.com</a><br><a href=\"mailto:sarah.laaru@finnishafrican.com\">sarah.laaru@finnishafrican.com</a></p>" }, "name": { "fi": "Kunda Kids Kulttuuripäivä / Kunda Kids Culture Day Experience" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264938/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:265161", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2693, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:29:35.693988Z", "last_modified_time": "2023-08-15T15:29:35.694008Z", "url": "https://www.helmet.fi/download/noname/{6FCAFD2F-86CC-46EF-B976-153A28487C42}/104852", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2693/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:29:35.545535Z", "last_modified_time": "2023-09-19T10:07:23.560375Z", "date_published": "2023-08-11T10:55:00Z", "start_time": "2023-08-19T09:00:00Z", "end_time": "2023-08-19T12: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": "Lauantaina 19.8.2023 Espoo Cinén perhepäivä valtaa Tapiolan klo 9.30 alkaen. Tervetuloa nauttimaan festivaalitunnelmasta koko perheellä! Tarjolla on elokuvia, koirakavereita, temppurata sekä paljon muuta elokuva-aiheista oheisohjelmaa. Tapahtumaan on vapaa pääsy." }, "info_url": null, "description": { "fi": "<p>Espoo Cinén perhepäivä valtaa Tapiolan lauantaina 19.8.2023 klo 9:30 alkaen. Tervetuloa nauttimaan festivaalitunnelmasta koko perheellä! Tarjolla on elokuvia, koirakavereita, temppurata sekä paljon muuta elokuva-aiheista oheisohjelmaa. Tapahtumaan on vapaa pääsy.</p><p> <strong>KINO TAPIOLAN AAMUPÄIVÄ | 09.30–12</strong> </p><ul> <li> <strong>09.30–</strong> <strong>12.00</strong> <a href=\"https://www.tapme.fi/\">Tapiolan metsänkävijöiden</a> vohvelipiste</li> <li> <strong>10.00–12.00 </strong>Piirustuspiste, julisteiden tuunaus ja festaridiplomi</li> <li> <strong>10.00–10.30 </strong>ILMAISNÄYTÖS: <em>Animaatioita pienimmille</em></li> <li> <strong>11.00–11.30 </strong>ILMAISNÄYTÖS: <em>Animaatioita pienimmille</em></li> </ul></p><p> <strong>KULTTUURIKESKUKSEN JA KIRJASTON ILTAPÄIVÄ | 12–16.30</strong> </p><p> <strong>12.00–15.00 | Aula, kirjasto ja Ahjo-näyttelytila:</strong> </p><ul> <li>Lukukoirat Nekku ja Pätkis pitävät vastaanottoa kaikenkarvaisille lukijoille</li> <li>Pinssityöpaja – väritä ja askartele oma festivaalipinssi</li> <li>Aarrekartta, piirustuspiste, julisteiden tuunaus ja festaridiplomi</li> <li>Espoon Telinetaitureiden \"agilityrata\" temppuilijoille</li> <li>Kuvausseinä tulevaisuuden tähdille – nappaa oma polaroid-kuvasi!</li> <li>Kirjavinkkinurkkaus seikkailumielisille eläinystäville</li> </ul></p><p> <strong>13.00–14.00 | Piha:</strong> </p><ul> <li>Kennelliiton kaverikoirat rapsutettavina!</li> </ul></p><p> <strong>15.00–16.30</strong> <strong>| </strong><strong>Louhisali: </strong></p><p>ENNAKKOENSI-ILTA: <em>Titina-terrieri Pohjoisnavalla (liput 5€)</em> <br><strong>Levitys:</strong> Black Lion Pictures | <strong>Kesto</strong>: 91 min. | <strong>Kieli</strong>: puhuttu suomeksi</p><p>Tositarinaan pohjautuvassa animaatiossa nokkela rescuekoira Titina lähtee löytömatkalle kohti pohjoisnapaa. Lemmikin näkökulmasta kuvattu sydämellinen elokuva sopii koko perheelle. <a href=\"https://www.youtube.com/watch?v=yPNfRPo5-7E&embeds_referring_euri=https%3A%2F%2Fwww.filmikamari.fi%2F&feature=emb_imp_woyt\">Katso traileri</a>, <a href=\"http://www.espoocine.fi/fi/elokuvat/titina-terrieri-pohjoisnavalla\">lue lisää elokuvasta</a> ja osta liput (5€) näytökseen<strong> ti </strong><strong>8.8. alkaen</strong>!</p><p> <strong> <a href=\"https://espoocine.fi/fi/tapahtumat/perhepaiva\">Lue ajankohtainen ohjelma kellonaikoineen Espoo Cinén nettisivuilta.</a> </strong> <br> Mahdollisia viimehetken muutoksia ei päivitetä tälle sivulle.</p><p>Tervetuloa!</p>" }, "name": { "fi": "Espoo Cinén perhepäivän ohjelmaa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kino Tapiola, Kulttuurikeskus, Kirjasto, Piha" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:265161/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261647", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2951, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:36:16.172207Z", "last_modified_time": "2023-08-15T15:36:16.172229Z", "url": "https://www.helmet.fi/download/noname/{BB963894-25B6-49F7-BE47-6611EEB04202}/103169", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2951/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:36:18.053029Z", "last_modified_time": "2023-09-18T03:56:52.340213Z", "date_published": "2023-06-19T11:30:00Z", "start_time": "2023-09-17T09:00:00Z", "end_time": "2023-09-17T15: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": "Lasten viikonloppuna arki on ihmeellistä!" }, "info_url": null, "description": { "fi": "<p>Lasten viikonloppuna tavallinen arki on ihmeellistä.</p><p>Luvassa on askartelua, satutuokioita ja muuta kivaa puuhaa, sekä tietysti kirjanäyttely. </p><p>Mitä kaikkea eriskummallista saattaakaan tapahtua aivan tavallisena päivänä?</p><p>Kuva: Canva</p>" }, "name": { "fi": "Lasten viikonloppu: Ihmeellinen arki" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261647/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:261646", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8149/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2951, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:36:16.172207Z", "last_modified_time": "2023-08-15T15:36:16.172229Z", "url": "https://www.helmet.fi/download/noname/{BB963894-25B6-49F7-BE47-6611EEB04202}/103169", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2951/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-15T15:36:15.747182Z", "last_modified_time": "2023-09-18T03:56:44.230746Z", "date_published": "2023-06-19T11:30:00Z", "start_time": "2023-09-16T07:00:00Z", "end_time": "2023-09-16T13: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": "Lasten viikonloppuna arki on ihmeellistä!" }, "info_url": null, "description": { "fi": "<p>Lasten viikonloppuna tavallinen arki on ihmeellistä.</p><p>Luvassa on askartelua, satutuokioita ja muuta kivaa puuhaa, sekä tietysti kirjanäyttely. </p><p>Mitä kaikkea eriskummallista saattaakaan tapahtua aivan tavallisena päivänä?</p><p>Kuva: Canva</p>" }, "name": { "fi": "Lasten viikonloppu: Ihmeellinen arki" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:261646/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266155", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3499, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-21T17:25:55.910244Z", "last_modified_time": "2023-08-21T17:25:55.910265Z", "url": "https://www.helmet.fi/download/noname/{55BD9D17-43EC-412D-927C-4CC48A284DC8}/105123", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3499/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-21T17:25:55.803451Z", "last_modified_time": "2023-09-17T15:32:50.664446Z", "date_published": "2023-08-21T16:00:00Z", "start_time": "2023-09-16T10:00:00Z", "end_time": "2023-09-16T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa Tapanilan kirjaston lastenlauantaihin juhlistamaan Vaahteramäen Eemelin juhlavuotta!" }, "info_url": null, "description": { "fi": "<p>Tunnetko Eemelin, pellavapäisen metkuilijan Vaahteramäeltä? Tänä vuonna vietetään, uskomatonta kyllä, Eemelin 60-vuotissyntymäpäiviä. Tervetuloa Tapanilan kirjaston perhelauantaihin juhlistamaan Eemeliä. Tapahtuma alkaa satutuokiolla klo 13, jonka jälkeen voi askarrella, visailla ja yrittää kiinnittää possulle häntää.<br><br> Edellisenä päivänä Pehmojen yöhön tuodut pehmolelut voi myös noutaa perhelauantain yhteydessä. Nähdään kirjastossa!<br> </p><p>Kuva: The Astrid Lindgren Company tm / Bildmakarna Berg / Björn Berg</p>" }, "name": { "fi": "Perhelauantai: Vaahteramäen Eemeli" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266155/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:197356", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8359/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3498, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-21T17:25:53.569318Z", "last_modified_time": "2023-08-21T17:25:53.569338Z", "url": "https://www.helmet.fi/download/noname/{CCDA04FE-EC9E-4D78-BD64-00D26CC056BC}/105121", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3498/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-08-21T17:25:52.286828Z", "last_modified_time": "2023-09-17T13:03:09.249493Z", "date_published": "2023-08-21T15:00:00Z", "start_time": "2023-09-15T06:00:00Z", "end_time": "2023-09-16T13: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": "Myyrä kutsuu Tapanilan pehmolelut yökylään kirjastoon!" }, "info_url": null, "description": { "fi": "<p>Asuuko teillä pehmolelu, joka haluaisi viettää jännittävän syksyisen yön kirjastossa? Myyrä ja muut kirjaston pehmot kutsuvat asiakkaiden pehmoystävät yökylään Tapanilan kirjastoon! Tällä kertaa mukana ovat ensimmäistä kertaa myös Vaahteramäen Eemeli ja Iida. Kuvia yön seikkailuista jaetaan kirjastomme Instagram-tilillä @kirjastotapanila. <br><br> Pehmoja vastaanotetaan koko perjantai klo 16 saakka lainaustiskillä. Jos pehmo uskaltaa olla kaksi yötä, hänet voidaan vastaanottaa jo torstaina. Oman pehmon voi noutaa kotiin lauantaina kirjaston aukioloaikana klo 10-16. Lauantaina kirjastolla vietetään myös perhelauantaita Vaahteramäen Eemelin 60-vuotisjuhlavuoden kunniaksi klo 13-15.</p>" }, "name": { "fi": "Pehmojen yö Tapanilan kirjastossa" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:197356/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:267007", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12031/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3748, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-29T07:29:02.046202Z", "last_modified_time": "2023-08-29T07:29:02.046228Z", "url": "https://www.helmet.fi/download/noname/{F1266307-D8A8-43B2-B281-A41D4E371728}/105289", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3748/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-08-29T07:29:01.791868Z", "last_modified_time": "2023-09-16T20:37:08.825887Z", "date_published": "2023-08-28T21:00:00Z", "start_time": "2023-09-16T09:00:00Z", "end_time": "2023-09-16T15: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": "Esillä tämän ajan sieniä Espoon lähiöiden pienistä metsiköistä." }, "info_url": null, "description": { "fi": "<p>Espoon ympäristöyhdistyksen sieninäyttely 16.9 klo 12-18</p><p>Esillä tämän ajan sieniä Espoon lähiöiden pienistä metsiköistä.</p><p>Vuosikymmeniä innokkaana sienestäjänä Paula Mertsalmi haluaa esitellä lähialueidemme monimuotoisuutta lukuisten sienien esiintymisellä.</p><p>Esillä syötäviä ja enemmän ja vähemmän syötäväksi kelpaamattomia.</p><p>Sienikirjoja esillä omalla kirjaston pöydällä.</p><p>Tervetuloa tutustumaan ja juttelemaan syksyn metsien lakkipäistä.</p>" }, "name": { "fi": "Sieninäyttely" }, "provider_contact_info": null, "location_extra_info": { "fi": "Estradi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:267007/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:264698", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10594/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10672/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11767/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2952, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:36:17.770998Z", "last_modified_time": "2023-08-15T15:36:17.771020Z", "url": "https://www.helmet.fi/download/noname/{E5A678A7-ED19-4D29-8BF4-3E66B85D1DEF}/104695", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2023-08-15T15:36:16.894981Z", "last_modified_time": "2023-09-16T17:39:57.104058Z", "date_published": "2023-08-03T09:06:00Z", "start_time": "2023-09-16T08:00:00Z", "end_time": "2023-09-16T14: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": "Vuoden 2023 Kolibri Festivaali alkaa Sellon kirjastosta! Uskomaton päivä musiikin, teatterin, taidetyöpajojen, satujen, tanssin ja nukkejen parissa. Paljon hauskaa koko perheelle!", "sv": "Vuoden 2023 Kolibri Festivaali alkaa Sellon kirjastosta! Uskomaton päivä musiikin, teatterin, taidetyöpajojen, satujen, tanssin ja nukkejen parissa. Paljon hauskaa koko perheelle!", "en": "Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!" }, "info_url": null, "description": { "fi": "<h3>Lauantaina 16.9. klo 11-17</h3></p><p>Vuoden 2023 Kolibri Festivaali alkaa Sellon kirjastosta! Uskomaton päivä musiikin, teatterin, taidetyöpajojen, satujen, tanssin ja nukkejen parissa. Paljon hauskaa koko perheelle!</p><p>Tule tapaamaan uusia ihmisia, oppimaan kieliä ja tutkimaan uusia kulttuureja!</p><p>Tänä vuonna teemana on \"Vieraanvaraisuuden taide\" yhtäaikaisesti Chile50 , joka kunnioittaa chileläisiä perheitä, jotka tulivat Suomeen 50 vuotta sitten etsimään turvapaikkaa.</p><p>Sello saa vieraakseen Kolibrin vieraan Tetro al Vacion! Argentiinalais-meksikolainen teatteri eittävät Sellossa näytelmät <em>Cerca</em> ja <em>Pulsar</em>.</p><p>Ohjelman löydät täältä<a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.kolibrifestivaali.org%2F%3Ffbclid%3DIwAR2FAaXPVzg5uN2N01ItvSIkC5lgmc_pVPS-V68ZcPy_kmiixAMYuGXbRkY&h=AT15TI1ofdZ1xWGylRnSluT-tPkSnngRWP5mFWrnId1eg7QIgOQCjlpcamiEGt8pigmf8m1PC1berb08tnP0ND48aSoULUqSC6Lj7rVYhvGY7XzMrb-VdqhekyIYJoCG6A&__tn__=q&c[0]=AT2cPZ0OdYTMdATL9h2RwdgND5gXBfBlf5ZEUnuRxLhRjj8K6i6RNjLSeJAr642BuC68O-44gB_CxN9HytpH1N3ElOQXpPmHj_QPusr4y1_d0TGL6uVhNx097V4N45T7rBk2ui2-6lWngn0s-9gxobPBfNhR\">https://www.kolibrifestivaali.org/</a></p><p>Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!</p><p>Come and meet people, learn new languages, explore new cultures, and above all, make new friends.</p><p>This year the main theme will be ‘The Art of Hospitality’, coinciding with Chile50, which will pay tribute to the Chilean families who came to Finland 50 years ago seeking refuge.</p><p>Sello will also receive Kolibrí’s guest company Teatro al Vacío! The Argentinian-Mexican theatre company will perform their plays <em>Cerca </em>and <em>Pulsar</em>.</p><p>Kolibrí is a unique multicultural, free and open art festival for the most diverse, plurilingual, and intergenerational audiences. We’ll take over cultural centers and libraries in Helsinki, Espoo and Vantaa, from September 16th to September 30th</p><p>Full program <a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.kolibrifestivaali.org%2F%3Ffbclid%3DIwAR2FAaXPVzg5uN2N01ItvSIkC5lgmc_pVPS-V68ZcPy_kmiixAMYuGXbRkY&h=AT15TI1ofdZ1xWGylRnSluT-tPkSnngRWP5mFWrnId1eg7QIgOQCjlpcamiEGt8pigmf8m1PC1berb08tnP0ND48aSoULUqSC6Lj7rVYhvGY7XzMrb-VdqhekyIYJoCG6A&__tn__=q&c[0]=AT2cPZ0OdYTMdATL9h2RwdgND5gXBfBlf5ZEUnuRxLhRjj8K6i6RNjLSeJAr642BuC68O-44gB_CxN9HytpH1N3ElOQXpPmHj_QPusr4y1_d0TGL6uVhNx097V4N45T7rBk2ui2-6lWngn0s-9gxobPBfNhR\">https://www.kolibrifestivaali.org/</a></p>", "sv": "<p>Kolibrí Festivaali 2023 börjar på Sello bibliotek! En fantastisk dag med musik, teater, konstverkstäder, berättande, dans, marionetter och massor av skoj för hela familjen!</p><p>Kom och träffa människor, lär dig nya språk, utforska nya kulturer och framför allt, skapa nya vänner. Fri entré!</p><p>I år kommer huvudtemat vara 'Konsten av Gästfrihet', sammanfallande med Chile50, som kommer att hedra de chilenska familjerna som kom till Finland för 50 år sedan i sökandet efter skydd.</p><p>Sello kommer också att få besök av Kolibrís gästkompani Teatro al Vacío! Den argentinska-mexikanska teaterkompanin kommer att framföra sina pjäser Cerca och Pulsar.</p><p>Kolibrí är en unik, mångkulturell, gratis och öppen konstfestival för de mest olika, flerspråkiga och intergenerationella publiken. Vi kommer att ta över kulturcentrum och bibliotek i Helsingfors, Esbo och Vanda, från den 16 till den 30 september.</p><p>Spara detta evenemang i din kalender och missa det inte! </p><p>Det fullständiga programmet på <a href=\"https://eur03.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.kolibrifestivaali.org%2F&data=05%7C01%7C%7Ca895006dbe68421d3dcc08dbaab8aae5%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C638291482390184049%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=RBcyshBSCRoHfG%2FKu6%2FI4Gm3M00NJfuOp0oXtHkQTHo%3D&reserved=0\">www.kolibrifestivaali.org</a> </p>", "en": "<h3>Saturday 16.9. at 11 am to 5 pm</h3><p>Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!</p><p>Come and meet people, learn new languages, explore new cultures, and above all, make new friends.</p><p>Kolibrí Festivaali 2023 begins begins at Sello Library! An amazing day with music, theatre, art workshops, storytelling, dance, puppets and lots of fun for the whole family!</p><p>Come and meet people, learn new languages, explore new cultures, and above all, make new friends.</p><p>This year the main theme will be ‘The Art of Hospitality’, coinciding with Chile50, which will pay tribute to the Chilean families who came to Finland 50 years ago seeking refuge.</p><p>Sello will also receive Kolibrí’s guest company Teatro al Vacío! The Argentinian-Mexican theatre company will perform their plays <em>Cerca </em>and <em>Pulsar</em>.</p><p>Kolibrí is a unique multicultural, free and open art festival for the most diverse, plurilingual, and intergenerational audiences. We’ll take over cultural centers and libraries in Helsinki, Espoo and Vantaa, from September 16th to September 30th</p><p>Full program <a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.kolibrifestivaali.org%2F%3Ffbclid%3DIwAR2FAaXPVzg5uN2N01ItvSIkC5lgmc_pVPS-V68ZcPy_kmiixAMYuGXbRkY&h=AT15TI1ofdZ1xWGylRnSluT-tPkSnngRWP5mFWrnId1eg7QIgOQCjlpcamiEGt8pigmf8m1PC1berb08tnP0ND48aSoULUqSC6Lj7rVYhvGY7XzMrb-VdqhekyIYJoCG6A&__tn__=q&c[0]=AT2cPZ0OdYTMdATL9h2RwdgND5gXBfBlf5ZEUnuRxLhRjj8K6i6RNjLSeJAr642BuC68O-44gB_CxN9HytpH1N3ElOQXpPmHj_QPusr4y1_d0TGL6uVhNx097V4N45T7rBk2ui2-6lWngn0s-9gxobPBfNhR\">https://www.kolibrifestivaali.org/</a></p>" }, "name": { "fi": "Kolibri lastenfestivaali", "sv": "Kolibri lastenfestivaali", "en": "Kolibri Festivaali" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:264698/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:268013", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8348/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10689/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11689/?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": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 4701, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-11T11:26:32.957867Z", "last_modified_time": "2023-09-11T11:26:32.957891Z", "url": "https://www.helmet.fi/download/noname/{8C618ECF-33B0-4369-A66B-A30BD1EF40B4}/105732", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4701/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-09-11T09:39:20.496440Z", "last_modified_time": "2023-09-16T11:54:40.671996Z", "date_published": "2023-09-11T08:32:00Z", "start_time": "2023-09-16T10:00:00Z", "end_time": "2023-09-16T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Juhlistamme Myllypuropäivää kirjastolla klo 13-15!" }, "info_url": null, "description": { "fi": "<p>Juhlistamme kotoisaa asuinaluettamme kirjastolla klo 13-15! </p><p> <strong>OHJELMA</strong> </p><p> <strong>klo 13-15 Myllypuroaiheinen kirjanmerkkipaja </strong> <br> <br> Tee itsellesi tai ystävällesi tyylikäs Myllypuro-kirjanmerkki. <br><br><strong>klo 13-15 Oodi kotiseudulle -runopaja</strong></p><p>Luo ylevä, hassu tai arkinen runo kodillesi, asuinalueellesi tai kotiseudullesi poistokirjasivujen sanoja leikkaamalla ja liimaamalla uudelleen yhteen. <br><br><strong>klo 13-14.30 Dokumenttielokuva: Laulu koti-ikävästä (2012 / 90 min /S)</strong></p><p>Nelikymppinen, entinen muusikko Kai Latvalehto pyytää isäänsä Taunoa kuskiksi Oulusta Göteborgiin. Kai haluaa päästä takaisin maisemiin, joissa perhe asui 1970-luvulla eli koko hänen lapsuutensa aina murrosikään saakka.<br> Pojan ja isän automatka muuttuu musiikilliseksi retkeksi yhteiseen tunnemuistiin ja suomalaissiirtolaisuuden historiaan: häpeään, syyllisyyteen, rikollisuuteen, alkoholismiin ja perhesalaisuuksiin. Musiikillisen selkärangan dokumentille luovat suomalaissiirtolaisten 1970-luvulla kirjoittamat kappaleet, joita esittävät livenä toisen sukupolven ruotsinsuomalaiset muusikot.<br> Mika Ronkaisen palkittu dokumentti on elämänmakuinen ja lämminhenkinen ajankuvaus. <br> (Lähde: yle.fi)</p><p> <strong>klo 13-15 Mehu- ja keksitarjoilu</strong> </p><p>Vapaa pääsy. Lämpimästi tervetuloa! </p>" }, "name": { "fi": "Myllypuropäivä" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:268013/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:266498", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:19580/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12005/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 3836, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-09-01T07:33:23.678009Z", "last_modified_time": "2023-09-01T07:33:23.678030Z", "url": "https://www.helmet.fi/download/noname/{8A853DDF-2EA8-4C50-A267-9ACC2F952FB0}/105457", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3836/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-01T07:33:23.278861Z", "last_modified_time": "2023-09-16T07:06:09.877645Z", "date_published": "2023-09-01T06:27:00Z", "start_time": "2023-09-16T07:00:00Z", "end_time": "2023-09-16T07: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 tutustumaan Mata-Miin seikkailuihin!" }, "info_url": null, "description": { "fi": "<p>Muovailuvahanukketeatteriesitys</p><p>Perustuu Sanna Pelliccionin lasten kuvakirjaan.</p><p>Pienen Mata-Mii -tytön unelma on seikkailu. Hän saa tädiltään luvan seikkailla vuoden ajan maalla, merellä tai ilmassa. Mata-Mii pestautuu mausteita kuljettavaan laivaan ja pääsee laivakokki Leonen oppiin. Eikä aikaakaan kun Mata-Miista tulee laivan leipurimestari. Mata-Miilla on satumainen kyky leipoa herkullisia kakkuja ja ilahduttaa ihmisiä ympäri maailmaa.</p><p>Tämä musiikkipitoinen nukketeatterinäytelmä toteutetaan muovailuvahaesityksenä, jossa lavasteet ja nuket rakennetaan esityksen aikana. Näytelmä innostaa muovailemaan -vaikka ikioman Mata-Miin!</p><p>”Kakku pian valmis on näin kuiskaa uunin pellit, päälle vielä koristeeksi kauniit nonparellit, jii-haa on Mata-Mii tää hurmaava sokerileipuri!”</p><p>Ikäsuositus 2+</p><p>Kesto 30 minuuttia</p><p>Käsikirjoitus, lavasteet ja nuket Ilpo Mikkonen</p><p>Ohjaus Teija Paananen</p><p>Musiikki Salla-Marja Hätinen/ Ilpo Mikkonen</p><p> <a href=\"http://www.pikkukulkuri.fi\">Nukketeatteri PikkuKulkurin tuotantoa www.pikkukulkuri.fi</a> </p><p>Facebook Nukketeatteri PikkuKulkuri<br> ilpoilpo@outlook.com</p><p>Asiasana: Lastenkulttuuri</p>" }, "name": { "fi": "Mata-mii -sokerileipuri seikkailee" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:266498/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agggfz7lzi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21431/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/876227290607902", "language": "fi" } ], "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": "2023-09-14T13:01:57.117705Z", "last_modified_time": "2023-09-14T13:01:57.117729Z", "date_published": null, "start_time": "2023-09-17T10:00:00Z", "end_time": "2023-09-17T13: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": "Lasten kulttuurikeskus Aurora juhlii 20-vuotissyntymäpäiviään! Juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi!" }, "info_url": null, "description": { "fi": "<p>Lasten kulttuurikeskus Auroran Taidetalo juhlii tänä syksynä 20-vuotissyntymäpäiviään! “Taidetekoja 20 vuotta” -juhlakauden kunniaksi tuomme taidepajoja kotikulmillesi Leppävaaraan, Soukkaan, Matinkylään ja Kalajärvelle. Tule tekemään taidetta kanssamme! </p><p>Syntyneet teokset pääsevät osaksi näyttelykokonaisuutta, joka avataan Lapsen oikeuksien viikolla ja huipentuu lauantaina 25.11. Suureen Taidejuhlaan Lasten kulttuurikeskus Aurorassa. <br> <br>Taide syntyy leikiten – paja pienille </p><p>Leikin maailmassa kaikki on mahdollista. Hauskuus kaksinkertaistuu, kun taidepajassa iloisen leikin jäljet tallentuvat yhteiseksi maalaukseksi. Kirmaa tutkimaan mielikuvituksen hehkun piirtymistä värikkäiksi taidejäljiksi! Taideohjaaja Jenni Vilander </p><p>Hetken ajatus -pilvet – paja isoille </p><p>Mikä juuri tässä hetkessä on mukavaa? Kutkuttaako ajatuksissa saapuvan syksyn uudet tuulet tai tapahtuiko tänään aamulla jotain yllättävää? Mistä ajatuksesta sinä haluat jättää jäljen? Taiteile se ajatuspilveen! TaidePiilon taideohjaajat, taidepiilo.fi</p><p>Menossa on mukana kirjaston tapahtuma-auto Välkky, josta voi myös lainata aineistoa! Välkyssä voi teettää kirjastokortin. <br> <br>Tapahtuma on maksuton <br>Järj. Lasten kulttuurikeskus Aurora yhteistyössä Espoon kirjaston kanssa. </p><p><br>Koko kiertue</p><p>La 16.9. klo 10-14 Leppävaaran urheiluaukio <br>Su 17.9. klo 13-16 Soukan asukaspuisto <br> <br>La 14.10. Klo 10-14 Maailman Matti, Kauppakeskus Iso Omenaa vastapäätä <br>Su 15.10. Klo 13-16 Hiirisuon asukaspuisto, Kalajärvi </p><p>Kuva Jenni Vilander<br></p>" }, "name": { "fi": "Taidetta teillä -kiertue, Soukan asukaspuisto" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Lasten kulttuurikeskus Aurora ja Espoon kirjasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agggfz7lzi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }