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&include=location%2Ckeywords&page=200
{ "meta": { "count": 32755, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=201", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=199" }, "data": [ { "id": "espoo_le:agnntkrgau", "has_user_editable_resources": false, "location": { "id": "tprek:15311", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:05.278840Z", "last_modified_time": "2024-04-09T05:09:27.677777Z", "custom_data": null, "email": "kirjasto.tapiola@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1742, "image": 7887, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.804646, 60.178085 ] }, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84850" }, "description": null, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66aa", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.038364Z", "last_modified_time": "2023-12-13T11:20:12.038383Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 601, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Otaniemi", "sv": "Otnäs", "en": "Otaniemi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67zy", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.499844Z", "last_modified_time": "2023-12-13T11:20:12.499862Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 388, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Mankkaa", "sv": "Mankans", "en": "Mankkaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz7acu", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.571131Z", "last_modified_time": "2023-12-13T11:20:12.571155Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 644, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Pohjois-Tapiola", "sv": "Norra Hagalund", "en": "Pohjois-Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz7ane", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.654416Z", "last_modified_time": "2023-12-13T11:20:12.654432Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 642, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Westend", "sv": "Westend", "en": "Westend" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11727", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.526740Z", "last_modified_time": "2024-02-06T13:24:10.745704Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 900, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Lukupiirit", "sv": "Bokcirklar", "en": "Book clubs", "ru": "Литературные кружки" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkrd5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkrele/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkreye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkrffq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkrfs4/?format=api" } ], "images": [ { "id": 1490107, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-26T09:49:24.652377Z", "last_modified_time": "2025-05-26T09:49:24.652398Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/25228787-63b9-4b75-9925-aadafb544fbd.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Taru Mäkelä", "alt_text": "Kirjarivi, jonka yläpuolella teksti Lukupiiri Tapiolan kirjastossa. Kuvassa myös lukupiirin vetäjä Mikko Airaksinen hymyilee ja pitelee avattua kirjaa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490107/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T10:42:56.367097Z", "last_modified_time": "2025-12-02T11:09:43.124660Z", "date_published": null, "start_time": "2026-01-13T09:00:00Z", "end_time": "2026-05-12T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kirjaston lukupiirissä osallistujat keskustelevat etukäteen valitusta kirjasta.", "sv": "I bibliotekets bokcirkel diskuterar man tillsammans om en bok som valts som tema för sammanträffandet, och som deltagarna har läst. Bokcirkeln är på Finska.", "en": "In a library book club, the participants discuss together the book selected for the meeting, which they have read. The book club is in Finnish." }, "info_url": null, "description": { "fi": "<p>Kirjaston lukupiirissä osallistujat keskustelevat etukäteen valitusta kirjasta. Mukaan voi tulla kesken kauden, ja vaikkei olisi lukenut kirjaa.</p><p>Lukupiiri kokoontuu keväällä 2026 seuraavasti:</p><p>13.1. Nguyên, Phan Quê Mai: Vuorten laulu </p><p>3.2. Boschwitz, Ulrich Alexander: Matkalainen</p><p>3.3. Riikonen, Matias: Iltavahtimestarin kierros</p><p>7.4. Haahtela, Joel: Yö Whistlerin maalauksessa</p><p>12.5. Vapaavalintainen Claire Keeganin kirja: Nämä pienet asiat, Kasvatti, Aivan viime hetkellä</p>", "sv": "<p>I bibliotekets bokcirkel diskuterar man tillsammans om en bok som valts som tema för sammanträffandet, och som deltagarna har läst.</p><p>Bokcirkeln är på Finska. </p><p>13.1. Nguyên, Phan Quê Mai: Vuorten laulu </p><p>3.2. Boschwitz, Ulrich Alexander: Matkalainen</p><p>3.3. Riikonen, Matias: Iltavahtimestarin kierros</p><p>7.4. Haahtela, Joel: Yö Whistlerin maalauksessa</p><p>12.5. Vapaavalintainen Claire Keeganin kirja: Nämä pienet asiat, Kasvatti, Aivan viime hetkellä</p>", "en": "<p>n a library book club, the participants discuss together the book selected for the meeting, which they have read.</p><p>The book club is in Finnish.</p><p>13.1. Nguyên, Phan Quê Mai: Vuorten laulu </p><p>3.2. Boschwitz, Ulrich Alexander: Matkalainen</p><p>3.3. Riikonen, Matias: Iltavahtimestarin kierros</p><p>7.4. Haahtela, Joel: Yö Whistlerin maalauksessa</p><p>12.5. Vapaavalintainen Claire Keeganin kirja: Nämä pienet asiat, Kasvatti, Aivan viime hetkellä</p>" }, "name": { "fi": "Tapiolan kirjaston Lukupiiri", "sv": "Bokcirkel på finska", "en": "Book club in Finnish" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkrgau/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujn4q", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:31.647938Z", "last_modified_time": "2025-12-02T11:03:31.647955Z", "date_published": null, "start_time": "2026-05-17T08:00:00Z", "end_time": "2026-05-17T10: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujn4q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujoou", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:31.547346Z", "last_modified_time": "2025-12-02T11:03:31.547362Z", "date_published": null, "start_time": "2026-05-03T08:00:00Z", "end_time": "2026-05-03T10: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujoou/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujoyu", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:31.445120Z", "last_modified_time": "2025-12-02T11:03:31.445137Z", "date_published": null, "start_time": "2026-04-19T08:00:00Z", "end_time": "2026-04-19T10: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujoyu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujpda", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:31.342760Z", "last_modified_time": "2025-12-02T11:03:31.342779Z", "date_published": null, "start_time": "2026-03-29T08:00:00Z", "end_time": "2026-03-29T10: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujpda/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujpoe", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:31.221287Z", "last_modified_time": "2025-12-02T11:03:31.221305Z", "date_published": null, "start_time": "2026-03-15T09:00:00Z", "end_time": "2026-03-15T11: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujpoe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujpza", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:31.103032Z", "last_modified_time": "2025-12-02T11:03:31.103058Z", "date_published": null, "start_time": "2026-03-01T09:00:00Z", "end_time": "2026-03-01T11: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujpza/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujqfe", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:30.985065Z", "last_modified_time": "2025-12-02T11:03:30.985083Z", "date_published": null, "start_time": "2026-02-15T09:00:00Z", "end_time": "2026-02-15T11: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujqfe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujqqu", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:30.877121Z", "last_modified_time": "2025-12-02T11:03:30.877139Z", "date_published": null, "start_time": "2026-02-01T09:00:00Z", "end_time": "2026-02-01T11: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujqqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujq2y", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:30.758347Z", "last_modified_time": "2025-12-02T11:03:30.758365Z", "date_published": null, "start_time": "2026-01-18T09:00:00Z", "end_time": "2026-01-18T11: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 tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujq2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn5ujre4", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujn4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujoou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujoyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujpda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujpoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujpza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujqfe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujqqu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujq2y/?format=api" } ], "images": [ { "id": 1490651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T10:10:37.909395Z", "last_modified_time": "2025-09-08T10:10:37.909409Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5c40258c-e3bb-470c-bdac-95d099b9ab60.jpg", "name": "", "cropping": "105,0,2488,2383", "photographer_name": "", "alt_text": "Kuvassa lukukoira Fila metsässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490651/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-02T11:03:29.669559Z", "last_modified_time": "2025-12-02T11:03:29.669582Z", "date_published": null, "start_time": "2026-01-18T09:00:00Z", "end_time": "2026-05-17T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa tapaamaan lukukoira Filaa Sellon kirjaston lastenmaahan.", "sv": "Välkommen att träffa läshunden Fila i Sellobiblioteket's barnland.", "en": "\nWelcome to meet the reading dog Fila in Sello Library's children's section." }, "info_url": null, "description": { "fi": "<p>Tervetuloa tapaamaan lukukoira Filaa Sellon lastenmaahan. Jos haluat harjoitella lukemista, Fila kuuntelee mielellään eikä koskaan hauku tai arvostele. Fila pitää myös silittelyistä ja rapsutteluista. Varaathan oman lukuaikasi Lastenmaan tiskiltä.</p>", "sv": "<p>Välkommen att träffa läshunden Fila i Sellos barnland. Vill du träna på att läsa lyssnar Fila gärna och skäller eller kritiserar aldrig. Fila gillar att bli klappad och gosad.</p>", "en": "<p>Welcome to meet the reading dog Fila in Sello's children's section. If you want to practice reading, Fila is happy to listen and never barks or criticizes. Fila likes to be petted and cuddled. Please reserve your turn at the Lastenmaa service counter</p>" }, "name": { "fi": " Lukukoira Fila", "sv": "Läshund Fila", "en": " Reading dog Fila" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn5ujre4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67142", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 984, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:758", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2025-01-16T11:10:18.586374Z", "last_modified_time": "2025-01-16T11:10:18.586416Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 146, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "valtuusto150" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2847, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/" }, "description": null, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491042, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T13:13:31.650984Z", "last_modified_time": "2025-10-08T13:13:31.650995Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773715.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491042/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T13:13:31.566242Z", "last_modified_time": "2025-12-02T08:13:18.220812Z", "date_published": null, "start_time": "2025-12-03T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.", "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.", "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_", "sv": "http://www.stoa.fi/sv/evenemang/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_", "en": "http://www.stoa.fi/en/events/event/39B2EF06F1A927B4837D5AEBA7B6C826/Kinetic_Orchestra_Working_Class_Heroes_" }, "description": { "fi": "<p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811524/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811524/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811524/?affiliate=FSF\">HERE</a></u></p>" }, "name": { "fi": "Kinetic Orchestra: Working Class Heroes", "sv": "Kinetic Orchestra: Working Class Heroes", "en": "Kinetic Orchestra: Working Class Heroes" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67142/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67141", "has_user_editable_resources": false, "location": { "id": "tprek:7259", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itäkeskus", "municipality": "Helsinki", "name": { "fi": "Itäkeskus", "sv": "Östra centrum" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T08:12:16.357900Z", "last_modified_time": "2025-03-27T09:09:26.797975Z", "custom_data": null, "email": "stoa.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00900", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 979, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.stoa.fi/", "sv": "https://www.stoa.fi/sv/framsidan", "en": "https://www.stoa.fi/en/frontpage" }, "description": { "fi": "Sen ohjelmiston ydintä ovat tanssi, nykysirkus, näyttelyt, eri taidealojen festivaalit sekä taidekasvatus eri ikäisille. Stoa ja Stoan aukio muodostavat kaikille avoimen idän kulttuuriolohuoneen, jossa kaupunkilaiset osallistuvat teosten ja tapahtumien tekemiseen myös itse.", "sv": "Ett högklassigt programutbud lockar publik i alla åldrar till Stoa från olika håll i Helsingfors. I programutbudet finns inhemsk och internationell nutidsdans och nycirkus, teater, musik, barnföreställningar och utställningar. Stoas teatersal är en av Helsingfors främsta scener för nutidsdans. Helsingfors stad svarar för programverksamheten.", "en": "The high quality events at Stoa attract visitors of all ages from all over Helsinki. Stoa's programme includes Finnish and international contemporary dance and circus, theatre, music, children's performances and exhibitions. Stoa's auditorium is one of the best venues for contemporary dance in Helsinki. City of Helsinki is responsible for events at Stoa." }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 984, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Stoa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:758", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2025-01-16T11:10:18.586374Z", "last_modified_time": "2025-01-16T11:10:18.586416Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 146, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "valtuusto150" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2847, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/" }, "description": null, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491041, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T13:13:31.097666Z", "last_modified_time": "2025-10-08T13:13:31.097678Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773714.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491041/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T13:13:31.006521Z", "last_modified_time": "2025-12-02T08:13:17.739961Z", "date_published": null, "start_time": "2025-12-02T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.", "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.", "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_", "sv": "http://www.stoa.fi/sv/evenemang/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_", "en": "http://www.stoa.fi/en/events/event/228E90F09714D6E7DDE09C8C239FD45B/Kinetic_Orchestra_Working_Class_Heroes_" }, "description": { "fi": "<p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811523/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811523/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811523/?affiliate=FSF\">HERE</a></u></p>" }, "name": { "fi": "Kinetic Orchestra: Working Class Heroes", "sv": "Kinetic Orchestra: Working Class Heroes", "en": "Kinetic Orchestra: Working Class Heroes" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67141/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnjnaobrq", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5121", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:37.715031Z", "last_modified_time": "2023-08-16T05:19:37.715048Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 777, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näyttelyt", "sv": "utställningar", "en": "exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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": [ { "id": 1493829, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-18T09:39:03.131790Z", "last_modified_time": "2025-11-18T09:39:03.131806Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aec79396-4ef0-4a0e-83d1-4dff7281fe31.jpg", "name": "", "cropping": "182,0,1738,1556", "photographer_name": "", "alt_text": "Seija Nyyssönen: Colours of Light and Shadow", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493829/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-18T09:51:24.705542Z", "last_modified_time": "2025-12-02T08:04:46.845352Z", "date_published": "2025-11-17T07:00:00Z", "start_time": "2025-11-17T08:00:00Z", "end_time": "2025-12-21T18: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": "Seija Nyyssösen abstrakteja maalauksia.", "sv": "Abstrakta målningar av Seija Nyyssönen.", "en": "Abstract paintings by Seija Nyyssönen." }, "info_url": null, "description": { "fi": "<p>Näyttelyn <em>Colours of Light and Shadow</em> abstraktit maalaukset ovat kaikki erillisiä ja toisistaan riippumattomia. Taiteilija etsii teos teokselta aina uutta ilmaisua. Käytännössä maalausprosessi alkaa tunteesta, joka kutsuu sitä kuvaavan värin esiin maalausalustalle. Sen jälkeen muut värit ja abstraktit muodot kietoutuvat aloitusvärin ympärille ja lisäävät näin rytmiä työhön. Lopulta maalaus alkaa ohjata taiteilijaa ja antaa sille lopullisen muotonsa. </p><p>Seija Nyyssösen taide kutsuu meitä kokemaan ja löytämään jotain sellaista, mikä ei ole läsnä tietoisessa mielessämme. Katsomalla hänen maalauksiaan, voimme nähdä abstraktissa muodossa tuon tiedostamattoman. Se voi olla jokin tapahtuma, joka on jo mennyt, on läsnä tai vaivaa meitä, tai vain hetkittäinen välähdys jostain, mikä koskettaa syvästi sisimpäämme. Alitajuntamme auttaa meitä ymmärtämään todellisen tapahtuman motiiveja.</p><p>\"Taiteen tarkoitus on koskettaa. Kun annamme mielemme avautua, meistä voi tulla ehyempiä, kokonaisempia ihmisiä.\"</p><p>Näyttely avoinna kirjaston aukioloaikoina. Tervetuloa!</p><p><strong>Seija Nyyssönen</strong> (s.1962) on Tampereella syntynyt, sittemmin 30 vuotta Vaasassa asunut itseoppinut kuvataiteilija. Hän maalaa abstrakteja akryylimaalauksia. Koulutukseltaan hän on kauppatieteiden maisteri. Asuessaan kotikaupungissaan Tampereella hän opiskeli Konservatoriossa pianonsoittoa ja yksinlaulua. Vuonna 2017 hän palasi kotikaupunkiinsa Tampereelle ja aloitti akryylimaalauksen opiskelun. Hän tutustui maalaamiseen kuvataiteilija, taidemaalari Paula Ollikainen opastuksella Ahjolassa. </p><p>Jäsenyydet: </p><ul><li>Loviisan taideyhdistys ry </li><li>Ylöjärven taideyhdistys ry </li><li>Suomen taiteilijat ry </li></ul><p>Yksityisnäyttelyt: </p><ul><li>Galleria Theodor Life is Color, Loviisa 15.2.-8.3.2022 </li><li>Lielahden kirjasto Life is Color, Tampere 23. toukokuuta - 10. kesäkuuta 2022 </li><li>Metson pääkirjasto Color Wonderland, Tampere 29.7.-17.8.2024 </li></ul><p>Ryhmänäyttelyt: </p><ul><li>Sannaisen kartanon Life is Color 7/2022 Yhteisnäyttely Seija Westmanin kanssa, Jyrytys: Nina Pauloff </li><li>Kaapelitehdas puristamo, Kuvia uudesta maasta 30.11.- 11.12.2022, Jurytys: Tero Annanolli </li><li>Loviisa Galleria Theodor, Tulokkaat 2022, tammikuu 2023, Loviisa Jurytys: Nina Pauloff </li><li>Galleria Fogga, Koloristin päiväkirjat, 11.2.-2.3.2023, Helsinki Lauttasaari </li><li>Vanha Räikkä, Maailma on sinun, 30.5.-30.6.2024, Ylöjärvi </li><li>A+ Gallery, Helsinki Kalasatama, Abstract Reality, 31.8.-14.9.2024 Jurytys Rain Lin </li><li>Ylöjärven keskusta, Kulissien takana -näyttely näyteikkunoissa. Lehtonen, Koivula, Nyyssönen, lokakuu 2024 </li><li>Loviisa Galleria Theodor, Kevättä ilmassa - Vår i luften, 24.2.-9.3.2025 </li><li>Kaapelitehdas puristamo, Suomen taiteilijat ry Väriharmoniaa, 25.3.-6.4.2025. Jurytys Vicky Maaranen </li><li>Messukylän kirjasto, Värin juhlaa 10 vuotta, Ahjolan Perjantaimaalarit, 4.4.-29.4.2025 </li><li>Meilahden kartanon tanssipaviljonki, Uudet Maan Kuvat 2025 8.11. - 31.11. 2025 Jurytys Jari Järnström </li></ul><p>Instagram: <a href=\"https://www.instagram.com/nyyssonenseija/\">@nyyssonenseija</a> </p>", "sv": "<p>Abstrakta målningar av Seija Nyyssönen.</p><p>Seija Nyyssönens konst inbjuder oss att uppleva och upptäcka något som inte finns i vårt medvetande. Genom att betrakta hennes målningar kan vi se det omedvetna i abstrakt form. </p><p>”Konstens syfte är att beröra oss. När vi öppnar våra sinnen kan vi bli mer helgjutna, mer fullständiga människor.”</p><p>Utställningen kan ses under bibliotekets öpettider. Välkommen!</p><p>Instagram: <a href=\"https://www.instagram.com/nyyssonenseija/\">@nyyssonenseija</a> </p>", "en": "<p>Abstract paintings by Seija Nyyssönen.</p><p>Seija Nyyssönen's art invites us to experience and discover something that is not present in our conscious minds. By looking at her paintings, we can see the unconscious in abstract form. </p><p>\"The purpose of art is to touch us. When we allow our minds to open up, we can become more whole, more complete people.\"</p><p>The exhibition is open during the library’s opening hours. Welcome!</p><p>Instagram: <a href=\"https://www.instagram.com/nyyssonenseija/\">@nyyssonenseija</a> </p>" }, "name": { "fi": "Seija Nyyssönen: Colours of Light and Shadow (näyttely)", "sv": "Seija Nyyssönen: Colours of Light and Shadow (utställning)", "en": "Seija Nyyssönen: Colours of Light and Shadow (exhibition)" }, "provider_contact_info": null, "location_extra_info": { "fi": "Valatori-seinä", "sv": "Valatori-väggen", "en": "Valatori wall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjnaobrq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:111a5ee5-dc0c-4bd1-ac0d-3241f2f2c418", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p14614", "has_user_editable_resources": false, "alt_labels": [ "dance-pop", "eurodance", "tanssipop", "danspop", "eurodance" ], "created_time": "2023-08-16T05:18:50.090864Z", "last_modified_time": "2023-08-16T05:18:50.090883Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 78, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "dance", "en": "dance (music)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1947", "has_user_editable_resources": false, "alt_labels": [ "prosperity", "welfare (well-being)", "välfärd" ], "created_time": "2023-08-16T05:19:38.138600Z", "last_modified_time": "2026-01-10T04:42:05.285206Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1966, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "hyvinvointi", "sv": "välmående", "en": "well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Linked_Events_-projekti_-_Kattotapahtuma_20232356693551" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-01T08:03:30.386211Z", "last_modified_time": "2025-12-02T07:18:55.923950Z", "date_published": "2025-12-01T08:01:06Z", "start_time": "2026-01-01T06:00:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 50, "minimum_attendee_capacity": 5, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kattotapahtuman ja alitapahtumien julkaisu" }, "info_url": null, "description": { "fi": "<div><p>Pitäisi näkyä LE:ssä järkevästi kattotapahtuma ja alitapahtuma</p></div>" }, "name": { "fi": "Linked Events -projekti - Kattotapahtuma #2023" }, "provider_contact_info": null, "location_extra_info": { "fi": "Alagalleria" }, "provider": { "fi": "Annantalo (KYMP)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:111a5ee5-dc0c-4bd1-ac0d-3241f2f2c418/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999948", "has_user_editable_resources": false, "location": { "id": "tprek:9302", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat", "municipality": "Helsinki", "name": { "fi": "Linjat", "sv": "Linjerna" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:13:24.017069Z", "last_modified_time": "2024-02-06T13:10:05.015052Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 893, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.942722, 60.181675 ] }, "telephone": { "fi": "+358 9 394 022" }, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "description": null, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849162/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999948/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999948/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/aleksi-suomesta-helsingin-kaupunginteatteri-19999948/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360034, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:29.901832Z", "last_modified_time": "2025-03-17T22:17:29.901845Z", "url": "https://www.lippu.fi/obj/mam/finland/2b/f1/aleksisuomesta222-tickets_369143_3117420_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360034/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:44.057537Z", "last_modified_time": "2025-12-02T03:14:52.332041Z", "date_published": null, "start_time": "2025-12-01T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Ari-Pekka Lahti ALEKSI SUOMESTA Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024)." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/aleksi-suomesta-3849162/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Ari-Pekka Lahti<br><strong>ALEKSI SUOMESTA</strong></p><p>Aleksi Suomesta on tositarina suomalaisesta ammattisotilaasta Aleksi Lysanderista (1989-2024). Näytelmä on Ari-Pekka Lahden sovitus Tuomas Kyrön samannimisestä kirjasta (WSOY, 2023), joka oli myös Tietokirjallisuuden Finlandia-palkintoehdokas.</p><p>Isovanhempiensa maatilalla Oulussa lapsuuttaan viettänyt, suomalaisen äidin ja senegalilaisen isän poika päättää tehdä itsestään sotilaan, ja lähtee 18-vuotiaana muukalaislegioonaan. Hän palvelee Afganistanissa ja useissa Afrikan maissa. Ukrainaan hän lähtee ensimmäisten vapaaehtoisten joukossa vuonna 2022, palaa välillä Suomeen, mutta lähtee uudestaan Ukrainaan syksyllä 2024, jossa hän menehtyy vuoden viimeisten päivien aikana.</p><p>Näytelmää on valmisteltu yhteistyössä Aleksi Lysanderin kanssa ja hänen toiveensa oli, että esitys toteutetaan ja siitä tulee mahdollisimman rehellinen kuvaus sodan jäljistä ja siitä, miten sota ei koskaan ole oikea ratkaisu.</p><p>Rooleissa: Roderick Kabanga, Eetu Känkänen</p><p>Kirjailija: Tuomas Kyrö<br>Dramatisointi: Ari-Pekka Lahti<br>Ohjaus: Tuomas Rinta-Panttila<br>Lavastus, valo- ja videosuunnittelu: Mika Haaranen<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Aleksi Saura<br>Naamioinnin suunnittelu: Tuula Kuittinen<br>Dramaturgi: Sanna Niemeläinen</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner<br></p>" }, "name": { "fi": "Aleksi Suomesta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999948/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506335", "has_user_editable_resources": false, "location": { "id": "tprek:9302", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:linjat", "municipality": "Helsinki", "name": { "fi": "Linjat", "sv": "Linjerna" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T08:13:24.017069Z", "last_modified_time": "2024-02-06T13:10:05.015052Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 893, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.942722, 60.181675 ] }, "telephone": { "fi": "+358 9 394 022" }, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "description": null, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3532975/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506335/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506335/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506335/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:42.124713Z", "last_modified_time": "2025-02-17T11:16:42.124728Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/HKT_MRM_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-17T11:17:26.344913Z", "last_modified_time": "2025-12-02T03:14:52.215244Z", "date_published": null, "start_time": "2025-12-01T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/moulin-rouge-musikaali-3532975/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin, ja sykkii elämää Kaupunginteatterin suurella näyttämöllä. Moulin Rouge! Musikaali räjäyttää tajuntasi, stimuloi kaikkia aistejasi ja kietoo sinut ennenkokemattoman hekumalliseen kimallukseen. Visuaalinen spektaakkeli ja intohimoinen rakkaustarina sisältää popmusiikin historian suurimpia hittejä.</strong></p><p>Moulin Rouge! Musikaali on aistillinen, näyttävä musikaalishow ja satumainen, henkeäsalpaava rakkaustarina. Musikaali vie katsojan legendaariseen 1800-luvun lopun yökerhoon Pariisiin. Kaikki on sallittua, ja kaiken saa anteeksi rakkauden nimissä, kun boheemi nuori säveltäjä rakastuu kauniiseen kurtisaaniin, ja kielletyt intohimot leimahtavat.</p><p>Kymmenen Tony-palkintoa kahmineessa Moulin Rouge! Musikaalissa kuullaan yli seitsemääkymmentä musiikkihistorian suurinta hittiä.</p><p>Moulin Rouge! Musikaali on hunajaista hedonismia kaikilla herkuilla. Astu sisään hekumalliseen loistoon, unohda kaikki estosi ja antaudu villiin ilonpitoon – tervetuloa Moulin Rouge! Musikaaliin!</p><p>Rooleissa: Jennie Storbacka, Martti Manninen, Risto Kaskilahti, Joel Mäkinen, Nea-Maria Alanko, Laura Allonen, Sofia Arasola, Nicolas Frimodig, Sari Haapamäki, Asbjørn Hagen, Natasja Jean-Charles, Wilhelm Blomberg, Suvi Salospohja, Antti Lang, Marissa Lattu, Matti Leino, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Eleonoora Martikainen, Jero Mäkeläinen, Ville Mäkinen, Ulla Paajanen, Samuli Pajunen, Saara-Elina Partanen, Justus Pienmunne, Raili Raitala, Tuukka Raitala, Samuli Saurén, Katrin Vaskelainen, Mikko Vihma, Yasmine Yamajako, Osku Ärilä</p><p>Käsikirjoitus: John Logan<br>Suomentaja: Paavo Leppäkoski<br>Ohjaaja: Anders Albien<br>Apulaisohjaaja: Kirsi Karlenius<br>Vastaava kapellimestari: Eeva Kontu<br>Kapellimestari: Ville Myllykoski<br>Lavastus: takis<br>Pukusuunnittelu: Astrid Lynge Ottosen<br>Pukukoordinaattori: Laura Dammert<br>Valosuunnittelu: Palle Palmé<br>Äänisuunnittelu: Kai Poutanen<br>Koreografi: Jennie Widegren/Anja Gaardbo/Kirsty McDonald/Zain Odelstål<br>Naamioinnin suunnittelu: Maija Sillanpää<br>Dramaturgi: Henna Piirto</p><p>Perustuu Baz Luhrmanin elokuvaan Moulin Rouge.</p><p><br></p>", "en": "<p>John Logan<br><strong>MOULIN ROUGE! MUSIKAALI</strong></p>" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506335/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67665", "has_user_editable_resources": false, "location": { "id": "tprek:8740", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:ala-malmi", "municipality": "Helsinki", "name": { "fi": "Ala-Malmi", "sv": "Nedre Malm" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:malmi", "municipality": "Helsinki", "name": { "fi": "Malmi", "sv": "Malm" } } ], "created_time": "2023-08-15T08:12:54.264692Z", "last_modified_time": "2025-03-27T09:09:27.443498Z", "custom_data": null, "email": "malmitalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00700", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1348, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.malmitalo.fi/", "sv": "https://www.malmitalo.fi/sv/framsidan", "en": "https://www.malmitalo.fi/en/frontpage" }, "description": { "fi": "Esitys- ja näyttelytoiminnan lisäksi talossa toimivat kirjasto, ravintola, työväenopisto, neljä taidekoulua sekä nuorisopalveluiden Operaatio Pulssi ja Koillisluotsi.", "sv": "Utöver föreställnings- och utställningsverksamhet rymmer huset även bibliotek, restaurang, arbetarinstitut, fyra konstskolor och ungdomstjänsternas Operaatio Pulssi och Koillisluotsi.", "en": "In addition to performances and exhibitions, the building features a library, restaurant, adult education centre, four art schools and Operaatio Pulssi and Koillisluotsi project steered by Youth Services." }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:42", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.601092Z", "last_modified_time": "2024-02-06T13:19:13.998256Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1336, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Malmitalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:50", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.712175Z", "last_modified_time": "2024-02-06T13:19:14.155029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 380, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Näyttelyt" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:755", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2024-05-30T11:10:09.697444Z", "last_modified_time": "2024-05-30T11:10:09.697496Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1101, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Kaupunkiuudistusalueet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p21812", "has_user_editable_resources": false, "alt_labels": [ "onlineutställningar", "webbutställningar", "digitaaliset näyttelyt", "digitala utställningar", "digital exhibitions" ], "created_time": "2023-08-16T05:10:11.760235Z", "last_modified_time": "2023-08-16T05:10:11.760254Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 336, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "verkkonäyttelyt", "sv": "utställningar på nätet", "en": "online exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493983, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T14:12:32.686609Z", "last_modified_time": "2025-12-01T14:12:32.686625Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782316.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493983/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T14:12:32.514329Z", "last_modified_time": "2025-12-01T14:12:32.838139Z", "date_published": null, "start_time": "2025-12-04", "end_time": "2025-12-27", "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": "Asetelma, stilleben, still life tarkoittaa hiljaisia maalauksia.", "sv": "Stilleben avser stillsamma målningar.", "en": "Still life, stilleben, means “silent paintings.”" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life", "en": "http://www.malmitalo.fi/en/events/event/B7F0E4D90CCEB319E341E433A2F221C9/Asetelmia_Stilleben_Still_life" }, "description": { "fi": "<p>Asetelma, stilleben, still life tarkoittaa hiljaisia maalauksia.</p><p>Perinteisessä asetelmassa on erilaisia esineitä aseteltu malliksi pöydälle tai johonkin muuhun tasoon. Esineet voivat olla astioita, hedelmiä, vihanneksia, riistalintuja roikkumassa tai melkein mitä tahansa. Ne ovat pysähtyneessä tilassa liikkumattomina, kuolleina. Nimensä mukaisesti maalauksen aihe on hiljaisuus ja esineet ovat vain objekteja idean toteuttamiseksi. <br> <br>Olen lisännyt muutamiin töihin myös eläviä olentoja. Kissa vahtaa lintua ikkunan takana, varis hämmästelee keltaista muoviankkaa. Mikään ei liiku. Aika on pysähtynyt. Maalaukset ovat realistisia. Olen yrittänyt tallentaa hetken maalauksen keinoin. Kamera olisi tietysti kätevämpi mutta kamera ei osaa maalata. Digikuva on vain sähköinen illuusio todellisuudesta. Maalarin paletti mahdollistaa leikkimisen väreillä, valolla ja tunnelmilla. Maalipinnat luovat elävän struktuurin.<br> <br>Stilleben on kannanotto kiireiselle, hektiselle elämällemme. Kannattaisi pysähtyä ja jäädä katsomaan onko jotain mennyt pieleen, kun elämä muuttuu koko ajan stressaavammaksi. Kuka meitä ohjaa, kuka käyttää hyväksi. Mihin tarvitsemme jatkuvaa kasvua, jos se tekee meistä onnettomia? Jos se johtaa luontokatoon ja ilmastokatastrofiin? Stilleben on passiivinen vastarinta.</p><p>Se on pysähtynyt aika.</p><p>Näyttelyn avajaiset järjestetään ke 3.12. klo 17 alkaen. Tervetuloa!</p><p><b>Taiteilijasta</b><br>Olen pohjoisessa, Posiolla v.1951 syntynyt kuvataiteilija. Lapsuuttani ympäröi metsät ja vaaramaisemat. Kotini oli köyhä pienviljelystila korven keskellä. Meillä ei ollut televisiota eikä viihde-elektroniikkaa, joten leikit ja harrastukset oli keksittävä itse. Luovuus kasvoi olosuhteiden pakosta.<br> <br>Pienestä asti olin innokas piirtämään. Koulukirjojen marginaalit ja kouluvihkojen tyhjät sivut täyttyivät piirroksistani. Myös kaupan valkoiset käärepaperit, tyhjät kenkälaatikot olivat hyvää materiaalia harrastukselleni. Piirustuslehtiöitä ei ollut. <br> <br>Nuorena karkasin maailmalle Helsinkiin. Kävin työväenopistolla piirtämässä elävää mallia mutta politikointi ja hippiaate veivät mukanaan, taiteilijuus jäi taka-alalle kunnes jo varttuneempana palasin takaisin pohjoiseen ja aloin maalaamaan. Osallistuin jo muutamiin näyttelyihinkin.</p><p>Opiskelin Oriveden Opiston kuvataidelinjalla puoli vuotta ja pyrin taideakatemiaankin mutta huonolla menestyksellä. Samaan aikaan sain töitä kaksi kertaa Nuorten näyttelyyn Helsingin Taidehalliin. Ajattelin että minähän olen jo valmis, mitä sitä turhaa opiskelemaan. Kävin kuitenkin piirtelemässä ja maalaamassa yliopiston piirustuslaitoksella ja työväenopistolla. Osallistuin taideleirille Kuusamossa ja Hailuodossa. Siellä oli hyvät opettajat.</p><p>Minusta ei tullut apurahataiteilijaa, joten oli keksittävä toimeentulo. Aloin tehdä koristemaalauksia ja kipsientisöintejä. Samaan aikaan osallistuin näyttelyihin ja veistoskilpailuihin.</p><p>Nuorena maalaukseni olivat poliittisia kannanottoja. Niissä oli pasifistinen ja yhteiskunnallinen sanoma. Myöhemmin työt muuttuivat abstrakteiksi, jopa minimalistisiksi. Nuoruuden turhautumat ajoivat kyynisyyteen kunnes iän kypsyttämänä palasin realismiin. Olin ymmärtänyt että taiteeni ei muuta maailmaa mutta voin vaikuttaa muutamiin ihmisiin yksi kerrallaan. Olin ymmärtänyt että jos en pysty pelastamaan ihmiskuntaa luontokatastrofilta niin yritän ainakin pelastaa taiteen maalaus kerrallaan. Ilman taidetta ihminen surkastuu robotiksi. Globaali markkinatalous haluaa riistää meiltä omaehtoisen ajattelun, luku-ja kirjoitustaidon. Meistä halutaan viihteen suurkuluttajia.</p><p>Maalaukseni ovat perinteisin menetelmin maalattuja asetelmia. Niiden sanoma on pysähtyminen.</p>", "sv": "<p>Stilleben avser stillsamma målningar.</p><p>I ett traditionellt stilleben är olika föremål arrangerade på ett bord eller någon annan yta. Föremålen kan vara tallrikar, frukt, grönsaker, fågel som hänger på en krok eller nästan vad som helst. De är orörliga, döda, i ett tillstånd av stillhet. Som namnet antyder är motivet i målningen tystnad, och föremålen är bara rekvisita för att förverkliga idén.</p><p>Jag har också lagt levande varelser till några av mina verk. En katt tittar på en fågel bakom ett fönster, en kråka förundras över en gul plastanka. Ingenting rör sig. Tiden har stannat. Målningarna är realistiska. Jag har försökt fånga ögonblicket genom måleriet. En kamera skulle förstås vara mer praktisk, men en kamera kan inte måla. En digital bild är bara en elektronisk illusion av verkligheten. En målares palett gör det möjligt att leka med färger, ljus och stämningar. De målade ytorna skapar en levande struktur.</p><p>Stilleben är ett uttalande om våra hektiska, stressiga liv. Det är värt att stanna upp och se om något har gått fel när livet blir alltmer stressigt. Vem styr oss, vem utnyttjar oss? Varför behöver vi ständig tillväxt om det gör oss olyckliga, om det leder till förstörelse av naturen och klimatkatastrof? Stilleben är passivt motstånd.</p><p>Det är tiden som står stilla.</p><p><b>Jag</b><br>Jag är en bildkonstnär född i Posio år 1951. Min barndom har jag varit omgiven av skogar och långsträktlanskapar. Mitt hem var en fattig småbrukare mitt i korgen. Vi hade ingen TV eller underhållningselektronik, så vi var tvungna att hitta på våra egna lekar och hobbyer. Detta inkluderade backhoppning och skidåkning på vintern, Indianlekar på sommaren och att bygga stugor. Kreativiteten växte fram ur nödvändighet.</p><p>Från barndomen var jag ivrig att rita. Skolböckernas marginaler och skolhäfternas tomma sidor fylldes av mina teckningar. Vita omslagspapper, en tom skokartong var bra material för en hobby. Det fanns inga ritblad. Jag vann några ritningstävlingar i skolan och det var då jag började vilja bli konstnär, men jag hade ingen aning om vad det innebar.</p><p>När jag var ung, flydde jag ut i världen till Helsingfors. Jag gick till Arbetarhögskolan för att rita efter en levande modell, men politiken och hippierörelsen tog mig bort. Min konstnärliga passion hamnade bakre tills jag blev äldre och jag återvände norrut och började måla. Jag deltog till och med i några utställningar. Jag studerade konst vid Orivesi institut halvår och jag strävade också efter konstakademin.</p><p>Men med dålig framgång. Samtidigt jag fick mitt konsverk för ungdomsutställningar på Helsingfors konsthall. Jag trodde att jag redan var redo, vad var det för meningslösa studier? Jag började dock rita och måla på Helsingfors universitetets ritavdelning och på arbetarinstitutet. Jag deltog i konstläger i Kuusamo och Hailuoto. Det fanns bra lärare där.<br> <br>Jag blev inte konstnärsstipendiat, så det var nödvändigt att hitta en försörjning. Jag började göra dekorationsmålningar och gipsrestaureringar. Samtidigt deltog jag i skulpturtävlingar och utstälningar.<br> <br>När jag var ung var mina målningar politiska uttalanden. De hade ett pasifistisk och samhälleligt budskap. Senare blev konsverk abstrakta, till och med minimalistiska. Ungdomens frustration drev mig till cynism tills mogen av older återvände jag till realism. Jag har förstått att min konst inte förändrar världen men jag kan påverka några människor en i taget. Jag hade förstått att om jag inte kan rädda mänskligheten från naturkatastrofen så försöker jag åtminstone rädda min konst en målning i taget. Utan konst förtvinar människan till en robot. Den globala marknadsekonomin vill beröva oss vår självständika tanke och läs-och skrivförmåga. Vi ska vara storkonsumenter under nöjesfesten.</p><p>Mina målningar är stilleben med traditionella metoder. Deras budskap är att stanna upp.</p>", "en": "<p>Still life, stilleben, means “silent paintings.”</p><p>In a traditional still life, various objects are arranged as a model on a table or some other surface. The objects might be dishes, fruits, vegetables, game birds hanging, or almost anything. They are in a motionless state, still, dead. As the name suggests, the subject of the painting is silence, and the objects are merely tools for realizing an idea.</p><p>I have added living creatures to some of my works as well. A cat watches a bird through the window; a crow marvels at a yellow rubber duck. Nothing moves. Time has stopped. The paintings are realistic. I have tried to capture a moment through the means of painting. Of course, a camera would be more convenient, but a camera cannot paint. A digital photo is only an electronic illusion of reality. The painter’s palette allows for play with colors, light, and moods. Layers of paint create a living texture.</p><p>Stilleben is a statement about our busy, hectic lives. It is worth stopping and looking — has something gone wrong as life becomes increasingly stressful? Who guides us, who takes advantage of us? Why do we need constant growth if it only makes us unhappy — if it leads to the loss of nature and a climate catastrophe? Stilleben is passive resistance.</p><p>It is time that has stopped.</p><p><b>About the artist</b><br>I am a visual artist, born in the Northern Finland in Posio 1951. My childhood was surrounded by forests and nothern hill landscapes. My home was a poor small farm in the middle of the wilderness. We had no television or consumer electronics, so we had to invent games and hobbies ourselves. Creativity grew out of necessity.<br>Ever since I was little, I have been eager to draw. The margins of school books and the empty pages of school notebooks were filled with my drawings. White wrapping paper from the store and empty shoe boxes were also good material for my hobby. There were no drawing pads. <br>When I as young, I ventured out into the world in Helsinki. I went to the workers institute to draw a living model, but the political activites and the pricipiles of hippies swept me away. The artistry remained on to the background until I returned to the north when I was older and started to paint. I already participated in a few exhibitions. <br>I studied at Orivesi institute in visual arts for half a year and I was still trying to get to the art academy, but with bad luck. At the same time two of my sculptures were accepted to the Youngs exhibition in Art Gallery of Helsinki, I thought I was ready as an artist. What's the point of studying? However, I went to study at the universitys drawing departmentland and to the workers institute. I participated in art camps in Kuusamo and Hailuoto. There were good teachers.</p><p>I didn't become a grant artist, so I had to come up with a living income. I started painting decorative paintings and plastering. On the side, I took part in a sculpture competition and to a few art exhibitions.<br>When I was young, my paintings were political statements. They had a pacifist and social message. My later works became abstract, even minimalistic. The frustration of youth led to cynicism until I matured and I returned to romance. I had realized that art doesn't change the world, but I could change people one at a time. I had realized that if I couldn't save the people from a natural disaster, I would at least try to save art one painting at a time. Without art, a human becomes a robot. Global market economy wants to deprive us of original thinking and literacy. They want us to become heavy consumers of entertainment, brainless consumers.</p><p>My paintings are still lifes painted using traditional methods. Their message is stopping.</p>" }, "name": { "fi": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia", "sv": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia", "en": "Asetelmia, Stilleben, Still life – Raimo Tuomivaaran maalauksia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67665/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnnugqyum", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2149", "has_user_editable_resources": false, "alt_labels": [ "opastaminen", "opastukset", "vägledning" ], "created_time": "2023-08-16T05:13:22.316826Z", "last_modified_time": "2023-08-16T05:13:22.316842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3818, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opastus", "sv": "guidning", "en": "guidance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2433", "has_user_editable_resources": false, "alt_labels": [ "ikä-ihmiset", "ikäihmiset", "gamlingar", "elderly", "old people", "older adults", "senior citizens", "iäkkäät", "seniorit", "vanhukset", "gamla", "seniorer", "äldre människor", "äldre personer", "åldringar" ], "created_time": "2023-08-16T05:17:43.642288Z", "last_modified_time": "2023-08-16T05:17:43.642316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 19274, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ikääntyneet", "sv": "äldre", "en": "older people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2630", "has_user_editable_resources": false, "alt_labels": [ "subject teaching", "aineenopetus", "aineopetus", "ämnesundervisning", "instruction", "teaching", "opettaminen" ], "created_time": "2023-08-16T05:19:46.234579Z", "last_modified_time": "2023-08-16T05:19:46.234597Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1529, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opetus", "sv": "undervisning", "en": "teaching and instruction" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugr3ly/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugr4bi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugr4yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugr5si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugr6hu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugr67e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugr7va/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsamq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsbb4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsbw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugscmy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsdci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsdza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugseoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsfdy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsfy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugsgoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugshdq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugshza/?format=api" } ], "images": [ { "id": 150380, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-28T11:55:37.590301Z", "last_modified_time": "2024-03-28T11:55:37.590319Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-16_1.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kaksi seniori-ikäistä tutkivat tablettia ja puhelinta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-12-01T12:19:54.929829Z", "last_modified_time": "2025-12-01T13:14:48.051930Z", "date_published": null, "start_time": "2026-01-15T09:00:00Z", "end_time": "2026-05-21T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Haluaisitko apua ja neuvoja tietokoneen, internetin tai sähköpostin peruskäyttöön?", "sv": "Vill du ha hjälp och råd om grundläggande dator-, internet- eller e-postanvändning?", "en": "Would you like help and advice on basic computer, internet or e-mail use?" }, "info_url": { "fi": "https://www.entersenior.fi/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/" }, "description": { "fi": "<p><strong>Haluaisitko apua ja neuvoja tietokoneen, internetin tai sähköpostin peruskäyttöön?</strong></p><p><strong>Enter ry:n maksutonta tietotekniikkaopastuksia on tarjolla Entressen kirjastossa ajanvarauksella torstaisin 15.1.- 21.5.2026 kello 11 - 13 .</strong></p><p><strong>Ei helatorstaina 14.5.2026</strong></p><p>Opastus tapahtuu asiakkaan omalla kannettavalla tietokoneella, mobiililaitteella tai kirjaston asiakaskoneella. Opastuksissa käydään läpi tietokoneen käytön ja internetin palveluiden perusteita. Opastus kestää yhden tunnin. Opastusaika varataan etukäteen joko puhelimitse numerossa 09 8165 3776 tai paikan päällä kirjastossa. Asiakkaalla voi olla opastukseen vain yksi varaus kerrallaan.</p><p>Enter ry on tieto- ja viestintätekniikasta sekä vapaaehtoistoiminnasta kiinnostuneiden eläkeläisten yhdistys. Yhdistyksen kotisivu: Enter ry.</p>", "sv": "<p><strong>Vill du ha hjälp och råd om grundläggande dator-, internet- eller e-postanvändning?</strong></p><p><strong>Enter rys kostnadsfria informationstekniska vägledning finns på Entresse-biblioteket efter överenskommelse torsdagarna den 15.1.- 21.5.2026 från 11.00 till 13.00.</strong></p><p><strong>Inte på Kristi himmelsfärdsdag, den 14 maj 2026</strong></p><p>Handledning sker på kundens egen laptop, mobila enhet eller biblioteksklientdator. Handledningarna täcker grunderna för datoranvändning och internettjänster. Instruktionen varar en timme. Guidetid bokas i förväg antingen på telefon 09 8165 3776 eller på plats på biblioteket. Kunden kan endast ha en reservation åt gången för vägledning.</p><p>Enter ry är en sammanslutning av pensionärer som är intresserade av informations- och kommunikationsteknik och volontärarbete. Föreningens hemsida: Enter ry.</p>", "en": "<p><strong>Would you like help and advice on basic computer, internet or e-mail use?</strong></p><p><strong>Enter ry's free information technology guidance is available at the Entresse library by appointment on Thursdays, 15.1.- 21.5.2026 at 11.00-13.00</strong></p><p><strong>Not on Ascension Day, May 14, 2026</strong></p><p>Guidance takes place on the customer's own laptop, mobile device or library client computer. The tutorials cover the basics of computer use and internet services. The instruction lasts one hour. Guide time is booked in advance either by phone at 09 8165 3776 or on site at the library. The customer can only have one reservation for guidance at a time.</p><p>Enter ry is an association of pensioners interested in information and communication technology and volunteering. The association's website: Enter ry.</p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille", "sv": "Informationsteknisk vägledning för seniorer", "en": "Information technology guidance for seniors" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnnugqyum/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67670", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 795, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:46", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.650020Z", "last_modified_time": "2024-02-06T13:19:14.062702Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 712, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2847, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493970, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:12.016118Z", "last_modified_time": "2025-12-01T13:14:12.016135Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782322.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493970/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:11.879162Z", "last_modified_time": "2025-12-01T13:14:12.166103Z", "date_published": null, "start_time": "2026-01-17T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1FCA07F4FE7D9FA703A268C7F86C2788/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/1FCA07F4FE7D9FA703A268C7F86C2788/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/1FCA07F4FE7D9FA703A268C7F86C2788/All_children_s_dance_class" }, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67670/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }