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=246
{ "meta": { "count": 32827, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=247", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=245" }, "data": [ { "id": "espoo_le:agnb7vm44y", "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 ] }, "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" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "description": null, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "@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: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:p14710", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:05:27.253448Z", "last_modified_time": "2023-08-16T05:05:27.253465Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1102, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "satutunnit", "sv": "sagotimmar", "en": "story hours" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?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": 7202, "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": 13454, "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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm4kq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm4t4/?format=api" } ], "images": [ { "id": 1490894, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-14T12:29:18.482475Z", "last_modified_time": "2025-12-01T13:15:37.054654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/storytelling-4203628_1280.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "piirroshahmoja avoimen kirjan päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490894/?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-10-26T08:45:47.445159Z", "last_modified_time": "2025-10-29T09:41:24.372452Z", "date_published": null, "start_time": "2025-11-15T08:30:00Z", "end_time": "2025-12-20T09: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, "info_url": null, "name": { "fi": "Venäjänkielinen satuhetki", "sv": "Sagostund på ryska", "en": "Story time in Russian" }, "description": { "fi": "<p>Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja. Lämpimästi tervetuloa!</p><p>15.11.2025 Kellonaika: 10.30-11.00 / tila: aikuisten pelihuone</p><p>20.12.2025 Kellonaika: 10.30-11.00 / tila: Aikuisten pelihuone</p><p><br></p><p>Час сказки для детей, родители тоже могут присутствовать! </p><p>5.11. и 20.12. в 10.30-11.00</p><p>Встречаемся в библиотеке Энтрессе (Pelihuone) </p><p>Добро пожаловать!</p>", "sv": "<p>Sagostund på ryska</p><p>Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn. Du är varmt välkommen!</p><p>15.11.2025 kl. 10.30-11.00</p><p>20.12.2025 Kl.10.30-11.00</p>", "en": "<p>Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children. You are warmly welcome!</p><p>15.11.2025 10.30-11.00</p><p>20.12. 10.30-11.00</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "aikuisten pelihuone" }, "provider": null, "short_description": { "fi": "Tule sukeltamaan satujen maailmaan Entressen kirjastoon. Satuhetket ovat lapsiperheille suunnattuja.", "sv": "Kom och dyk in i sagornas värld på Entresse Library. Sagostunderna riktar sig till familjer med barn.", "en": "Come and dive into the world of fairy tales at Entresse Library. The storytimes are aimed at families with children." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnb7vm44y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19932488", "has_user_editable_resources": false, "location": { "id": "tprek:46367", "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:siltasaari", "municipality": "Helsinki", "name": { "fi": "Siltasaari", "sv": "Broholmen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kallio", "municipality": "Helsinki", "name": { "fi": "Kallio", "sv": "Berghäll" } } ], "created_time": "2023-08-15T11:16:03.694168Z", "last_modified_time": "2025-02-01T06:09:58.729347Z", "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": 399, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.950369, 60.18024 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/nayttamot/arena-nayttamo/", "sv": "https://hkt.fi/nayttamot/arena-nayttamo/", "en": "https://hkt.fi/nayttamot/arena-nayttamo/" }, "name": { "fi": "Arena-näyttämö - Helsingin kaupunginteatteri", "sv": "Arena-scenen - Helsingfors stadsteater", "en": "Arena Theatre - Helsinki City Theatre" }, "description": { "fi": "Arena-näyttämöllä on nähty Helsingin Kaupunginteatterin vauhdikkaita ja viihdyttäviä esityksiä syksystä 2010 alkaen. Ohjelmistossa on ollut komediaa ja musikaaleja, niin Broadwaylta kuin Suomestakin, stand upia, kotimaisia kantaesityksiä ja musiikintäyteisiä konsertti-iltoja.", "sv": "Arenascenen har varit värd för Helsingfors stadsteaters fartfyllda och underhållande föreställningar sedan hösten 2010. Programmet har innehållit komedi och musikaler, stand-up, inhemska premiärer och musikfyllda konsertkvällar.", "en": "The Arena stage has hosted the Helsinki City Theatre's fast-paced and entertaining performances since autumn 2010. The program has included comedy and musicals, stand-up comedy, domestic premieres and music-filled concert evenings." }, "telephone": { "fi": "+358 9 394 022" }, "street_address": { "fi": "Hämeentie 2", "sv": "Tavastvägen 2", "en": "Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p13876", "has_user_editable_resources": false, "alt_labels": [ "lustspel", "comedy films", "huvinäytelmät" ], "created_time": "2023-08-16T05:19:37.901227Z", "last_modified_time": "2023-08-16T05:19:37.901248Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 396, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "komediat", "sv": "komedier", "en": "comedies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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": 1943, "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-967155/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932488/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932488/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-19932488/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 152460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-18T10:16:44.815531Z", "last_modified_time": "2024-09-18T10:16:44.815551Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2017/hkt_kiviataskussa_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/152460/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-05T12:17:20.644465Z", "last_modified_time": "2025-10-29T00:15:18.468134Z", "date_published": null, "start_time": "2025-10-28T16: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, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=en" }, "name": { "fi": "Kiviä Taskussa" }, "description": { "fi": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p><p>Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän. Pentti Kotkaniemen ohjauksessa ihmiskohtaloihin ja kokemuksiin limittyy myös Irlannin historia. Kiviä taskussa on ilmiö Suomen teatterikentällä – sitä on esitetty loppuunmyytynä jo vuodesta 2002.</p><p>Ohjaaja kehuu näytelmän ideaa: “Ihmettelen sitä, että vasta nyt joku nykykirjailija on käyttänyt keskiajalta tunnettua mysteerio buffo-menetelmää eli näyttelijä siirtyy toiseen rooliin vain rytmiä ja painotusta vaihtamalla.” Tähän hatunvaihtotekniikkaan yltävät nimenomaan Suosalo ja Nuojua. He tekevät yhteensä 15 roolia. “Vaihdot ovat salamannopeita ja roolihahmojen skaala ulottuu hemaisevasta amerikkalaiskaunottaresta 75-vuotiaaseen maalaisukkeliin”, Kotkaniemi kertoo.</p><p>Tarina ei ole silti mikään kahden miehen vitsi-ilta. “Ei, Kiviä taskussa on traaginen komedia ja haastava kahden miehen näytelmä”, Mika Nuojua sanoo. Tarina alkaa siitä, kun 35-vuotiaat luuserit Charlie ja Jake menevät avustajiksi amerikkalaisen elokuvan kuvauksiin ja joutuvatkin tekemään aivan muuta kuin ennakkoon aavistavat.</p><p>Ohjaaja Kotkaniemi sanoo, että näytelmä on tyypillistä näyttelijöiden teatteria. “Siksi molempien herrojen pitää olla virtuooseja. Onneksi he ovat, ja se on ohjaajan lottovoitto.”</p><p>Esitysoikeus: Suomen Teatteritoimisto Teateragenturen i Finland Ab <a href=\"http://www.teatteritoimisto.fi.\">http://www.teatteritoimisto.fi./</a></p><p>Rooleissa:<br>Martti Suosalo ja Mika Nuojua</p><p>Suomentaja: Henri Kapulainen<br>Ohjaaja: Pentti Kotkaniemi<br>Koreografia: Tuovi Rantanen<br>Lavastus ja puvut: Jyrki Seppä<br>Valot: Teppo Saarinen<br>Ääni: Ari-Pekka Saarikko</p><p><a href=\"https://hkt.fi/esitykset/kivia-taskussa\"><strong>Lisätietoa</strong></a></p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Marie Jones KIVIÄ TASKUSSA Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19932488/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19913666", "has_user_editable_resources": false, "location": { "id": "tprek:9340", "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:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:itä-pasila", "municipality": "Helsinki", "name": { "fi": "Itä-Pasila", "sv": "Östra Böle" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:pasila", "municipality": "Helsinki", "name": { "fi": "Pasila", "sv": "Böle" } } ], "created_time": "2023-08-15T08:13:25.079554Z", "last_modified_time": "2024-02-06T13:10:05.246698Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00520", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 315, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.940313, 60.199146 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/nayttamot/studio-pasila/", "sv": "https://hkt.fi/nayttamot/studio-pasila/", "en": "https://hkt.fi/nayttamot/studio-pasila/" }, "name": { "fi": "Studio Pasila", "sv": "Teaterstudio Pasila", "en": "Theatre Studio Pasila" }, "description": null, "telephone": { "fi": "+358 9 394 01" }, "street_address": { "fi": "Ratamestarinkatu 5", "sv": "Banmästargatan 5" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3843763/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-kuka-kaappasi-auringon-helsingin-kaupunginteatteri-19913666/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-kuka-kaappasi-auringon-helsingin-kaupunginteatteri-19913666/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-kuka-kaappasi-auringon-helsingin-kaupunginteatteri-19913666/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 278140, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-27T23:16:54.753845Z", "last_modified_time": "2025-02-27T23:16:54.753860Z", "url": "https://www.lippu.fi/obj/mam/finland/93/46/hkt-kuka-kaappasi-auringon-tickets_362232_3070654_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/278140/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-27T23:16:57.883038Z", "last_modified_time": "2025-10-29T00:15:18.323434Z", "date_published": null, "start_time": "2025-10-28T16: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, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kuka-kaappasi-auringon-3843763/?affiliate=ADV&language=en" }, "name": { "fi": "Kuka Kaappasi Auringon" }, "description": { "fi": "<p>Mauri Kunnas – Liila Jokelin – Lauri Schreck<br><strong>KUKA KAAPPASI AURINGON </strong></p><p>Väinölän taivaalla aurinko paistaa kultaisena. Niin kultaisena, että Pohjolan ahne Louhi saa idean: jos ryöstäisikin auringon ja takoisi sen kultakolikoiksi!</p><p>Louhi susijoukkoineen vangitsee auringon luolaan ja Väinölässä tulee kylmä. Pohjolassa sen sijaan on läkähdyttävän kuuma, kun kahlittu aurinko porottaa vihaisena luolassaan.</p><p>Mutta auringolla on voima, jolle edes Louhi ei mahda mitään. Ahneinkin oppii, mikä elämässä on oikeasti tärkeää.</p><p>Mauri Kunnaksen samannimiseen lastenkirjaan perustuvan upouuden lasten musiikkinäytelmän ohjaa ja dramatisoi <strong>Liila Jokelin</strong>, joka on myös säveltänyt näytelmän musiikin yhdessä <strong>Lauri Schreckin</strong> kanssa.</p><p>Tässä energisessä musiikkinäytelmässä paahdetaan rockia ja näyttäviä taistelukoreografioita koko näyttämön täydeltä! Esityksessä hehkuu Mauri Kunnaksen tunnistettava maailma. Näytelmän huumori, viisaus ja oivaltavuus lämmittävät pitkään.</p><p>Rooleissa: Juha Jokela, Jouko Klemettilä, Sanna Majuri, Arttu Kapulainen, Inkeri Raittila, Sanna Saarijärvi, Antti Timonen, Leenamari Unho</p><p>Kirjailija: Mauri Kunnas<br>Dramatisointi, ohjaus ja sävellys: Liila Jokelin<br>Sävellys: Lauri Schreck<br>Koreografia: Arvo Jean-Michael Ärlig<br>Lavastus ja puvut: Katariina Kirjavainen<br>Naamioinnin suunnittelu: Ronja Nylund<br>Valosuunnittelu: Teppo Saarinen<br>Äänisuunnittelu: Riku-Pekka Kellokoski<br>Tarpeiston suunnittelu: Mira Rokkanen<br>Dramaturgi: Sanna Niemeläinen<br>Oikeuksien valvoja: Agency North</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Mauri Kunnas – Liila Jokelin – Lauri Schreck KUKA KAAPPASI AURINGON Väinölän taivaalla aurinko paistaa kultaisena." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19913666/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19506328", "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 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "description": null, "telephone": { "fi": "+358 9 394 022" }, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "@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": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506328/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506328/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/moulin-rouge-musikaali-helsingin-kaupunginteatteri-19506328/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "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:24.006578Z", "last_modified_time": "2025-10-29T00:15:18.188687Z", "date_published": null, "start_time": "2025-10-28T16: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, "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" }, "name": { "fi": "Moulin Rouge! Musikaali" }, "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>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "John Logan MOULIN ROUGE! MUSIKAALI Helsingin Kaupunginteatterin Moulin Rouge! Musikaali on megamenestys! Oscar-palkittu eeppinen klassikkoelokuva herää henkiin," }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19506328/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20539230", "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 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://hkt.fi/", "sv": "https://hkt.fi/", "en": "https://hkt.fi/" }, "name": { "fi": "Helsingin Kaupunginteatteri", "sv": "Helsingfors Stadsteater", "en": "Helsinki City Theatre" }, "description": null, "telephone": { "fi": "+358 9 394 022" }, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "@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-2503579/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539230/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539230/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539230/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1461551, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-11T10:15:48.431415Z", "last_modified_time": "2025-08-11T10:15:48.431434Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hkt12lahjaa222.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/1461551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T10:15:48.304901Z", "last_modified_time": "2025-10-29T00:15:18.045837Z", "date_published": null, "start_time": "2025-10-28T08: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, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=en" }, "name": { "fi": "Kaksitoista Lahjaa Joulupukille" }, "description": { "fi": "<p>Mauri Kunnas<br><strong>Kaksitoista lahjaa Joulupukille</strong><br>Rakastettu klassikko</p><p>Pienen näyttämön lämpiö – Eläintarhantie 5<br>Ensi-ilta 1.11.2018<br>Noin 40 min, ei väliaikaa<br>Soveltuu 3-vuotiaasta ylöspäin.<br>10 €</p><p><strong>Mauri Kunnaksen rakastettu klassikkotarina taiotaan joulun aikaan eläväksi pienen näyttämön lämpiöön.Joulupukin kylässä, Korvatunturilla, käy kova vilske ja hyörinä, kun tonttujen suureen joulujuhlaan on enää kaksitoista päivää.<br></strong><br>Ville-tonttu pitää joulusta hurjan paljon ja lahjojen antaminen on parasta mitä hän tietää. Mutta Villellä on pulma. Miten Joulupukkia voisi ilahduttaa? Hän keksii antaa Joulupukille lahjan jokaisena päivänä ennen joulua. Ja hauskaahan siitä tulee, kun kaikki ei sujukaan suunnitelmien mukaan. Tonttupojan tempaukset onnellistuttavat kiireen keskellä ja tuovat hyvän joulumielen. Joulukylässä tapaat Ville-tontun, Joulupukin, Joulumuorin, oikeita ja sulavia poroja, Rekku-koiran, kissan ja tonttuväkeä!</p><p>Rooleissa: Sanna-June Hyde, Kaisa Torkkel ja Juha Jokela</p><p>Esitysoikeuksia valvoo Agency North / Suomen Näytelmäkirjailijat ja Käsikirjoittajat.</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pieni Näyttämö LÄMPIÖ" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Mauri Kunnas Kaksitoista lahjaa Joulupukille Rakastettu klassikko Pienen näyttämön lämpiö – Eläintarhantie 5 Ensi-ilta 1." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20539230/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2aua", "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 ] }, "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" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "description": null, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "@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": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 7202, "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": 13454, "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:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bma/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-28T15:27:47.592783Z", "last_modified_time": "2025-10-28T15:27:47.592801Z", "date_published": null, "start_time": "2025-10-31T06:00:00Z", "end_time": "2025-10-31T18: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, "info_url": null, "name": { "fi": "Koivun kauhistus" }, "description": { "fi": "<p>Tiesitkö, että Tapiolan kirjastossa on mystinen kokoushuone: <strong>Koivu</strong>, johon normaalisti vain henkilökunta pääsee?</p><p>Mitä siellä tapahtuu?</p><p>Miltä siellä näyttää?</p><p>Asuuko siellä kirjaston kummitus?</p><p><strong>TULE KATSOMAAN!</strong></p><p>Voit tuoda tai tehdä huoneeseen omia koristeitasi, lisätä kirjavinkin puun oksille tai vain nauttia jännittävästä tunnelmasta.</p><p>#halloween</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Koivu" }, "provider": null, "short_description": { "fi": "Tule tutustumaan kauhistuneeseen Koivuun." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2aua/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2bau", "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 ] }, "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" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "description": null, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "@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": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 7202, "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": 13454, "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:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bma/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-28T15:27:47.420108Z", "last_modified_time": "2025-10-28T15:27:47.420126Z", "date_published": null, "start_time": "2025-10-30T06:00:00Z", "end_time": "2025-10-30T06: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, "info_url": null, "name": { "fi": "Koivun kauhistus" }, "description": { "fi": "<p>Tiesitkö, että Tapiolan kirjastossa on mystinen kokoushuone: <strong>Koivu</strong>, johon normaalisti vain henkilökunta pääsee?</p><p>Mitä siellä tapahtuu?</p><p>Miltä siellä näyttää?</p><p>Asuuko siellä kirjaston kummitus?</p><p><strong>TULE KATSOMAAN!</strong></p><p>Voit tuoda tai tehdä huoneeseen omia koristeitasi, lisätä kirjavinkin puun oksille tai vain nauttia jännittävästä tunnelmasta.</p><p>#halloween</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Koivu" }, "provider": null, "short_description": { "fi": "Tule tutustumaan kauhistuneeseen Koivuun." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bau/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2bgi", "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 ] }, "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" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "description": null, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "@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": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 7202, "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": 13454, "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:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bma/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-28T15:27:47.228903Z", "last_modified_time": "2025-10-28T15:27:47.228922Z", "date_published": null, "start_time": "2025-10-29T06:00:00Z", "end_time": "2025-10-29T18: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, "info_url": null, "name": { "fi": "Koivun kauhistus" }, "description": { "fi": "<p>Tiesitkö, että Tapiolan kirjastossa on mystinen kokoushuone: <strong>Koivu</strong>, johon normaalisti vain henkilökunta pääsee?</p><p>Mitä siellä tapahtuu?</p><p>Miltä siellä näyttää?</p><p>Asuuko siellä kirjaston kummitus?</p><p><strong>TULE KATSOMAAN!</strong></p><p>Voit tuoda tai tehdä huoneeseen omia koristeitasi, lisätä kirjavinkin puun oksille tai vain nauttia jännittävästä tunnelmasta.</p><p>#halloween</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Koivu" }, "provider": null, "short_description": { "fi": "Tule tutustumaan kauhistuneeseen Koivuun." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bgi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2bma", "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 ] }, "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" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "description": null, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "@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": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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": 7202, "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": 13454, "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:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2aua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bgi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-28T15:27:45.868174Z", "last_modified_time": "2025-10-28T15:27:45.868199Z", "date_published": null, "start_time": "2025-10-29T06:00:00Z", "end_time": "2025-10-31T18: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, "info_url": null, "name": { "fi": "Koivun kauhistus" }, "description": { "fi": "<p>Tiesitkö, että Tapiolan kirjastossa on mystinen kokoushuone: <strong>Koivu</strong>, johon normaalisti vain henkilökunta pääsee?</p><p>Mitä siellä tapahtuu?</p><p>Miltä siellä näyttää?</p><p>Asuuko siellä kirjaston kummitus?</p><p><strong>TULE KATSOMAAN!</strong></p><p>Voit tuoda tai tehdä huoneeseen omia koristeitasi, lisätä kirjavinkin puun oksille tai vain nauttia jännittävästä tunnelmasta.</p><p>#halloween</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Koivu" }, "provider": null, "short_description": { "fi": "Tule tutustumaan kauhistuneeseen Koivuun." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2f7a", "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 ] }, "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" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "description": null, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "@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": "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:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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" }, { "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": 7202, "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": 13454, "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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T15:11:22.134895Z", "last_modified_time": "2025-10-28T15:11:22.134911Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lapsia tekemässä läksyjä yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-28T15:22:31.435390Z", "last_modified_time": "2025-10-28T15:22:31.435407Z", "date_published": null, "start_time": "2025-11-11T13:30:00Z", "end_time": "2025-11-11T15: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, "info_url": null, "name": { "fi": "Kirjastokerho", "sv": "Biblioteksklubb", "en": "Library club" }, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>", "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>", "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!", "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.", "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2f7a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2gfu", "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 ] }, "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" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "description": null, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "@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": "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:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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" }, { "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": 7202, "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": 13454, "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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?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:agncxi2glq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T15:11:22.134895Z", "last_modified_time": "2025-10-28T15:11:22.134911Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lapsia tekemässä läksyjä yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-28T15:22:30.834546Z", "last_modified_time": "2025-10-28T15:22:30.834563Z", "date_published": null, "start_time": "2025-11-04T13:30:00Z", "end_time": "2025-11-04T15: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, "info_url": null, "name": { "fi": "Kirjastokerho", "sv": "Biblioteksklubb", "en": "Library club" }, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>", "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>", "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!", "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.", "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2gfu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:9d7ed465-3b3d-f011-b4cc-main9100", "has_user_editable_resources": false, "location": { "id": "tprek:65018", "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-15T16:24:52.783782Z", "last_modified_time": "2025-04-23T07:10:15.824317Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "02650", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 16, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.809614, 60.22529 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://www.espoo.fi/sv/alberga-skola", "sv": "https://www.espoo.fi/sv/alberga-skola", "en": "https://www.espoo.fi/sv/alberga-skola" }, "name": { "fi": "Alberga skola", "sv": "Alberga skola", "en": "Alberga skola" }, "description": { "fi": "Alberga skola on ruotsinkielinen peruskoulu joka tarjoaa opetusta vuosiluokille 1-6.", "sv": "Alberga skola har ca 100 elever och är belägen invid Alberga idrottspark, där det finns fina möjligheter till naturupplevelser och olika idrottsverksamheter under alla årstider. I Alberga skola arbetar vi för jämlikhet och respekt. Vi jobbar målmedvetet och mångsidigt med läsning. I Monikko finns det 4 enheter under samma tak: Alberga skola (åk 1-6) och Leppävaaran koulu (åk 1-9) samt Alberga daghem och förskola och Monikon päiväkoti. Enheterna i Monikko samarbetar aktivt och vår gemensamma vision är: \"En hemtrevlig uppväxt- och lärmiljö\".", "en": "Alberga skola is a Swedish-speaking school with grades 1-6." }, "telephone": null, "street_address": { "fi": "Veräjäpellonkatu 2-4", "sv": "Grindåkersgatan 2-4", "en": "Veräjäpellonkatu 2-4" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p10218", "has_user_editable_resources": false, "alt_labels": [ "klassinen baletti", "balett (konst)", "balettkonst", "klassisk balett" ], "created_time": "2023-08-16T05:12:24.307654Z", "last_modified_time": "2023-08-16T05:12:24.307672Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 60, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "baletti (taiteet)", "sv": "balett (konstarter)", "en": "ballet (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p10727", "has_user_editable_resources": false, "alt_labels": [ "kansalaisaktivismi", "kansalaisosallistuminen", "kansalaisten osallistuminen", "medborgaraktivism", "medborgardeltagande", "engagemang", "medborgarinflytande" ], "created_time": "2023-08-16T05:18:07.639076Z", "last_modified_time": "2023-08-16T05:18:07.639094Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1714, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "osallistuminen", "sv": "deltagande", "en": "participation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11951", "has_user_editable_resources": false, "alt_labels": [ "mediakonst" ], "created_time": "2023-08-16T05:18:49.207705Z", "last_modified_time": "2023-08-16T05:18:49.207723Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "mediataide", "sv": "mediekonst", "en": "media art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1716, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p12650", "has_user_editable_resources": false, "alt_labels": [ "operettisävellykset", "operettkompositioner" ], "created_time": "2023-08-16T05:18:09.824734Z", "last_modified_time": "2023-08-16T05:18:09.824754Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "operetit", "sv": "operetter", "en": "operettas" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13084", "has_user_editable_resources": false, "alt_labels": [ "natur" ], "created_time": "2023-08-16T05:16:37.985735Z", "last_modified_time": "2023-08-16T05:16:37.985760Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "luonto", "sv": "naturen", "en": "nature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13876", "has_user_editable_resources": false, "alt_labels": [ "lustspel", "comedy films", "huvinäytelmät" ], "created_time": "2023-08-16T05:19:37.901227Z", "last_modified_time": "2023-08-16T05:19:37.901248Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 396, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "komediat", "sv": "komedier", "en": "comedies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1393", "has_user_editable_resources": false, "alt_labels": [ "seurat (järjestötoiminta)", "yhdistykset" ], "created_time": "2023-08-16T05:19:47.711187Z", "last_modified_time": "2024-04-06T04:40:52.636427Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 197, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "järjestöt", "sv": "föreningar", "en": "associations (organisations)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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:p1574", "has_user_editable_resources": false, "alt_labels": [ "special occasions", "fester", "högtider", "högtider och fester", "parties (celebrations)", "tillställningar (fester)" ], "created_time": "2023-08-16T05:19:43.224807Z", "last_modified_time": "2024-03-22T04:40:51.016442Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "juhlat", "sv": "fester och högtider", "en": "celebrations" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p15937", "has_user_editable_resources": false, "alt_labels": [ "imeväisikäiset", "spädbarn", "infants", "bebisar" ], "created_time": "2023-08-16T05:12:54.715337Z", "last_modified_time": "2023-08-16T05:12:54.715360Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "vauvat", "sv": "babyer", "en": "babies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16428", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:09.346796Z", "last_modified_time": "2023-08-16T05:19:09.346813Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 57, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "farssit", "sv": "farser", "en": "farces" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1657", "has_user_editable_resources": false, "alt_labels": [ "indoktrinaatio", "indoktrinering", "kansalaisvaikuttaminen", "vaikutusmahdollisuudet", "påverkande", "påverkande arbete", "påverkansarbete", "påverkningsmöjligheter" ], "created_time": "2023-08-16T05:19:36.228503Z", "last_modified_time": "2023-08-16T05:19:36.228522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "vaikuttaminen", "sv": "påverkan", "en": "influencing" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p17654", "has_user_editable_resources": false, "alt_labels": [ "summer theaters" ], "created_time": "2023-08-16T05:05:52.996011Z", "last_modified_time": "2023-08-16T05:05:52.996029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 57, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kesäteatterit", "sv": "sommarteatrar", "en": "summer theatres" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p181", "has_user_editable_resources": false, "alt_labels": [ "vanha tanssimusiikki", "gammal dansmusik" ], "created_time": "2023-08-16T05:19:45.914400Z", "last_modified_time": "2023-08-16T05:19:45.914419Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssimusiikki", "sv": "dansmusik", "en": "dance music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p18434", "has_user_editable_resources": false, "alt_labels": [ "Western art music", "Western classical music", "klassinen musiikki", "konserttimusiikki", "länsimainen taidemusiikki", "vakava musiikki", "klassisk musik", "konsertmusik", "seriös musik", "västerländsk konstmusik" ], "created_time": "2023-08-16T05:18:50.976439Z", "last_modified_time": "2023-08-16T05:18:50.976459Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "taidemusiikki", "sv": "konstmusik", "en": "art music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1855", "has_user_editable_resources": false, "alt_labels": [ "ei-kielellinen viestintä", "ei-verbaalinen viestintä", "non-verbaalinen viestintä", "ickeverbal kommunikation", "non-verbal kommunikation", "nonverbal kommunikation", "ordlös kommunikation" ], "created_time": "2023-08-16T05:18:35.910098Z", "last_modified_time": "2023-08-16T05:18:35.910122Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sanaton viestintä", "sv": "icke-verbal kommunikation", "en": "nonverbal communication" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1857", "has_user_editable_resources": false, "alt_labels": [ "iskusävelmät", "schlagers", "schlagrar" ], "created_time": "2023-08-16T05:17:39.803522Z", "last_modified_time": "2023-08-16T05:17:39.803541Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "iskelmät", "sv": "schlager", "en": "schlager music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1882", "has_user_editable_resources": false, "alt_labels": [ "rockmusik" ], "created_time": "2023-08-16T05:19:44.077970Z", "last_modified_time": "2023-08-16T05:19:44.077998Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "rock", "sv": "rock (musik)", "en": "rock music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1979", "has_user_editable_resources": false, "alt_labels": [ "kuvaus (valokuvaus)", "fotografi (framställning av bilder)" ], "created_time": "2023-08-16T05:19:42.940777Z", "last_modified_time": "2023-08-16T05:19:42.940793Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "valokuvaus", "sv": "fotografering", "en": "photography" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p20421", "has_user_editable_resources": false, "alt_labels": [ "clubs (music)", "jazz clubs", "rock clubs", "jazzklubit", "keikkapaikat", "klubit (musiikki)", "rockklubit", "jazzklubbar", "klubbar (musik)", "rockklubbar" ], "created_time": "2023-08-16T05:10:00.287630Z", "last_modified_time": "2023-08-16T05:10:00.287649Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikkiklubit", "sv": "musikklubbar", "en": "music clubs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?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": 340, "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" }, { "id": "yso:p22193", "has_user_editable_resources": false, "alt_labels": [ "kokeellinen sirkus", "uusi sirkus", "experimentell cirkus" ], "created_time": "2023-08-16T05:10:15.581015Z", "last_modified_time": "2023-08-16T05:10:15.581042Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 197, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nykysirkus", "sv": "nycirkus", "en": "contemporary circus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2240", "has_user_editable_resources": false, "alt_labels": [ "vetenskap (fenomen)" ], "created_time": "2023-08-16T05:16:51.767668Z", "last_modified_time": "2023-08-16T05:16:51.767692Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tiede", "sv": "vetenskap", "en": "science" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2445", "has_user_editable_resources": false, "alt_labels": [ "massamedia" ], "created_time": "2023-08-16T05:19:10.138910Z", "last_modified_time": "2023-08-16T05:19:10.138927Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 350, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "media", "en": "media" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p24597", "has_user_editable_resources": false, "alt_labels": [ "kuvatulkkaus", "bildtolkning för synskadade" ], "created_time": "2023-08-16T05:10:38.516856Z", "last_modified_time": "2023-08-16T05:10:38.516877Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kuvailutulkkaus", "sv": "syntolkning", "en": "audio description" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25077", "has_user_editable_resources": false, "alt_labels": [ "dockteater (konstarter)", "puppet theater" ], "created_time": "2023-08-16T05:13:40.124933Z", "last_modified_time": "2023-08-16T05:13:40.124951Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nukketeatteri (taiteet)", "sv": "dockteater (teaterkonst)", "en": "puppet theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25216", "has_user_editable_resources": false, "alt_labels": [ "multikonstnärlighet", "multikonst (multikonstnärlig verksamhet)" ], "created_time": "2023-08-16T05:10:43.686451Z", "last_modified_time": "2023-08-16T05:10:43.686469Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 84, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "monitaiteisuus", "sv": "multikonstnärlig verksamhet", "en": "multi-art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25476", "has_user_editable_resources": false, "alt_labels": [ "3-D-elokuvat", "3-ulotteiset elokuvat", "kolmiulotteiset elokuvat", "3-D-filmer", "tredimensionella filmer" ], "created_time": "2023-08-16T05:07:03.891303Z", "last_modified_time": "2023-08-16T05:07:03.891323Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 62, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "3D-elokuvat", "sv": "3D-filmer", "en": "3D films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25977", "has_user_editable_resources": false, "alt_labels": [ "pop-up phenomena" ], "created_time": "2023-08-16T05:07:09.514665Z", "last_modified_time": "2023-08-16T05:07:09.514684Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pop up -ilmiöt", "sv": "pop up-fenomen", "en": "pop up phenomena" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2698", "has_user_editable_resources": false, "alt_labels": [ "graafinen taide", "taidegrafiikka", "grafik (bildkonst)", "grafisk konst", "konstgrafik" ], "created_time": "2023-08-16T05:19:35.073591Z", "last_modified_time": "2023-08-16T05:19:35.073610Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "grafiikka", "sv": "grafik", "en": "graphics (visual arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2762", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:33.337239Z", "last_modified_time": "2023-08-16T05:19:33.337304Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 515, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "terveys", "sv": "hälsa", "en": "health" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2841", "has_user_editable_resources": false, "alt_labels": [ "folklore", "etninen musiikki", "etnomusiikki", "etnisk musik", "ethnic music", "traditional music", "nykykansanmusiikki", "perinnemusiikki", "tanhumusiikki", "etnomusik", "folkdansmusik", "nutidsfolkmusik", "traditionell musik" ], "created_time": "2023-08-16T05:19:34.213952Z", "last_modified_time": "2023-08-16T05:19:34.213970Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kansanmusiikki", "sv": "folkmusik", "en": "folk music (traditional music)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2969", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:40.535052Z", "last_modified_time": "2023-08-16T05:19:40.535069Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "popmusiikki", "sv": "popmusik", "en": "pop music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29778", "has_user_editable_resources": false, "alt_labels": [ "hardrock", "hårdrock" ], "created_time": "2023-08-16T05:11:22.955383Z", "last_modified_time": "2023-08-16T05:11:22.955399Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "hard rock", "en": "hard rock" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p318", "has_user_editable_resources": false, "alt_labels": [ "lastenleikit", "barnlekar" ], "created_time": "2023-08-16T05:19:10.824660Z", "last_modified_time": "2023-08-16T05:19:10.824677Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 73, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikit", "sv": "lekar", "en": "plays and games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p37827", "has_user_editable_resources": false, "alt_labels": [ "ordkonstpedagogik", "ordkonstundervisning" ], "created_time": "2023-08-16T05:15:59.381056Z", "last_modified_time": "2023-08-16T05:15:59.381073Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sanataidekasvatus", "sv": "ordkonstfostran", "en": "literary art education" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p38773", "has_user_editable_resources": false, "alt_labels": [ "art of comics", "comics (art)", "tecknad seriekonst" ], "created_time": "2023-08-16T05:16:03.115690Z", "last_modified_time": "2023-08-16T05:16:03.115707Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sarjakuvataide", "sv": "seriekonst", "en": "comic art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 680, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4357", "has_user_editable_resources": false, "alt_labels": [ "kontroll över livet", "livshantering", "livskontroll" ], "created_time": "2023-08-16T05:18:41.919048Z", "last_modified_time": "2023-08-16T05:18:41.919208Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elämänhallinta", "sv": "livskompetens", "en": "life management" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p485", "has_user_editable_resources": false, "alt_labels": [ "handarbete", "hantverk", "handarbete och hantverk (arbete)", "hantverk och handarbete (aktivitet)" ], "created_time": "2023-08-16T05:19:43.703641Z", "last_modified_time": "2023-08-16T05:19:43.703658Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 86, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "käsityö (toiminta)", "sv": "handarbete och hantverk (aktivitet)", "en": "handcrafting" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4892", "has_user_editable_resources": false, "alt_labels": [ "fairs", "trade events", "messut (kauppa)", "handelsmässor", "mässor (handel)" ], "created_time": "2023-08-16T05:17:55.604253Z", "last_modified_time": "2023-08-16T05:17:55.604308Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "messut (tapahtumat)", "sv": "mässor (evenemang)", "en": "trade fairs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5000", "has_user_editable_resources": false, "alt_labels": [ "draama", "dramas (plays)", "stage plays", "theatrical plays", "teatterikappaleet", "draman", "dramer", "pjäser", "teaterpjäser", "teaterstycken" ], "created_time": "2023-08-16T05:19:45.568394Z", "last_modified_time": "2023-08-16T05:19:45.568415Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näytelmät", "sv": "skådespel", "en": "plays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5007", "has_user_editable_resources": false, "alt_labels": [ "art of circus", "sirkus (taidelajit)", "cirkus (konstart)", "cirkuskonst" ], "created_time": "2023-08-16T05:18:56.386288Z", "last_modified_time": "2023-08-16T05:18:56.386306Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 179, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sirkustaide", "sv": "cirkus (konstarter)", "en": "circus (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5164", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:11:59.271137Z", "last_modified_time": "2023-08-16T05:11:59.271154Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 95, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "osallisuus", "sv": "delaktighet", "en": "involvement (participation)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6033", "has_user_editable_resources": false, "alt_labels": [ "surroundings", "omgivning" ], "created_time": "2023-08-16T05:19:42.063394Z", "last_modified_time": "2023-08-16T05:19:42.063413Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 163, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ympäristö", "sv": "miljö", "en": "environment" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6421", "has_user_editable_resources": false, "alt_labels": [ "musiikkidraamat", "oopperasävellykset", "oopperateokset", "operakompositioner", "operaverk" ], "created_time": "2023-08-16T05:19:28.559874Z", "last_modified_time": "2023-08-16T05:19:28.559895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "oopperat", "sv": "operor (verk)", "en": "operas" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6455", "has_user_editable_resources": false, "alt_labels": [ "design", "design", "design" ], "created_time": "2023-08-16T05:18:25.621979Z", "last_modified_time": "2023-08-16T05:18:25.621998Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 158, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "muotoilu", "sv": "formgivning", "en": "design (artistic creation)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6674", "has_user_editable_resources": false, "alt_labels": [ "barnskådespel" ], "created_time": "2023-08-16T05:17:18.220243Z", "last_modified_time": "2023-08-16T05:17:18.220283Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 58, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lastennäytelmät", "sv": "barnpjäser", "en": "children's plays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6834", "has_user_editable_resources": false, "alt_labels": [ "merkkikielet", "dövas teckenspråk", "teckenspråk (döva)" ], "created_time": "2023-08-16T05:19:23.507717Z", "last_modified_time": "2023-08-16T05:19:23.507734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "viittomakieli", "sv": "teckenspråk", "en": "sign language" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7157", "has_user_editable_resources": false, "alt_labels": [ "showt" ], "created_time": "2023-08-16T05:18:00.485084Z", "last_modified_time": "2025-01-14T04:42:31.632733Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "show't", "sv": "shower", "en": "shows" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7158", "has_user_editable_resources": false, "alt_labels": [ "kabareer" ], "created_time": "2023-08-16T05:17:19.628571Z", "last_modified_time": "2023-08-16T05:17:19.628596Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 59, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kabareet", "sv": "kabaréer", "en": "cabarets" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7266", "has_user_editable_resources": false, "alt_labels": [ "konkretismi (kuvataide)", "konkretism (konst)" ], "created_time": "2023-08-16T05:08:25.346620Z", "last_modified_time": "2023-08-16T05:08:25.346640Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 185, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "konkreettinen taide", "sv": "konkret konst", "en": "concrete art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7349", "has_user_editable_resources": false, "alt_labels": [ "safety", "security", "säkerhet (trygghet)", "trygghet" ], "created_time": "2023-08-16T05:19:42.690635Z", "last_modified_time": "2023-08-16T05:19:42.690652Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 92, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "turvallisuus", "sv": "säkerhet och trygghet", "en": "safety and security" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7969", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:18:02.409975Z", "last_modified_time": "2023-08-16T05:18:02.409999Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 58, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sanataide", "sv": "ordkonst", "en": "literary art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8025", "has_user_editable_resources": false, "alt_labels": [ "rakennustaide", "byggnadskonst" ], "created_time": "2023-08-16T05:19:07.593256Z", "last_modified_time": "2023-08-16T05:19:07.593299Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 63, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "arkkitehtuuri", "sv": "arkitektur", "en": "architecture" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?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" }, { "id": "yso:p8368", "has_user_editable_resources": false, "alt_labels": [ "videotallenteet", "videoinspelningar", "videoupptagningar", "video recordings" ], "created_time": "2023-08-16T05:16:24.119002Z", "last_modified_time": "2025-11-18T04:41:20.479404Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "videot (teokset)", "sv": "videor (verk)", "en": "videos (works)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8434", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:26.670455Z", "last_modified_time": "2023-08-16T05:19:26.670472Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "viihdemusiikki", "sv": "underhållningsmusik", "en": "light music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8470", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:40.879074Z", "last_modified_time": "2023-08-16T05:19:40.879092Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 72, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kestävä kehitys", "sv": "hållbar utveckling", "en": "sustainable development" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8475", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:19.897765Z", "last_modified_time": "2023-08-16T05:19:19.897782Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuriperintö", "sv": "kulturarv", "en": "cultural heritage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8674", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:12:16.381863Z", "last_modified_time": "2023-08-16T05:12:16.381880Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssikasvatus", "sv": "dansfostran", "en": "dance education" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9058", "has_user_editable_resources": false, "alt_labels": [ "musical theatre", "musikaaliteatteri", "musikalteater", "music theater (art forms)", "musical theater" ], "created_time": "2023-08-16T05:16:26.790933Z", "last_modified_time": "2023-08-16T05:16:26.790952Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 62, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikkiteatteri (taiteet)", "sv": "musikteater (teaterkonst)", "en": "music theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9241", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:18:59.766886Z", "last_modified_time": "2023-08-16T05:18:59.766906Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "satiiri", "sv": "satir", "en": "satire" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9244", "has_user_editable_resources": false, "alt_labels": [ "stå-upp-komik" ], "created_time": "2023-08-16T05:08:33.693878Z", "last_modified_time": "2023-08-16T05:08:33.693903Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 126, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "stand up -komiikka", "sv": "ståuppkomik", "en": "stand-up comedy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9375", "has_user_editable_resources": false, "alt_labels": [ "lopptorg", "second hand-butiker" ], "created_time": "2023-08-16T05:14:52.226647Z", "last_modified_time": "2023-08-16T05:14:52.226662Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirpputorit", "sv": "loppmarknader", "en": "flea markets" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9376", "has_user_editable_resources": false, "alt_labels": [ "bazaars (charities)", "rummage sales" ], "created_time": "2023-08-16T05:12:20.116401Z", "last_modified_time": "2023-08-16T05:12:20.116418Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "myyjäiset", "sv": "försäljningar (evenemang)", "en": "jumble sales" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9778", "has_user_editable_resources": false, "alt_labels": [ "samhälle (fenomen)" ], "created_time": "2023-08-16T05:19:24.039733Z", "last_modified_time": "2023-08-16T05:19:24.039749Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "yhteiskunta", "sv": "samhället", "en": "society" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "10" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340" }, "description": { "fi": "lapset" } }, { "is_free": false, "offer_price_groups": [], "price": { "fi": "5" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340" }, "description": { "fi": "aikuiset" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-10-28T13:32:57.055777Z", "last_modified_time": "2025-10-28T13:32:57.055791Z", "date_published": "2025-05-30T09:49:37Z", "start_time": "2025-10-30T09:58:00Z", "end_time": "2025-10-30T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 2, "audience_max_age": 24, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 100, "enrolment_start_time": "2025-10-30T07:00:00+02:00", "enrolment_end_time": "2025-10-30T13:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "name": { "fi": "Aika test main" }, "description": { "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Digia" }, "short_description": { "fi": "pricetestaus hw v1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:9d7ed465-3b3d-f011-b4cc-main9100/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:9d7ed465-3b3d-f011-b4cc-main99", "has_user_editable_resources": false, "location": { "id": "tprek:65018", "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-15T16:24:52.783782Z", "last_modified_time": "2025-04-23T07:10:15.824317Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "02650", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 16, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.809614, 60.22529 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://www.espoo.fi/sv/alberga-skola", "sv": "https://www.espoo.fi/sv/alberga-skola", "en": "https://www.espoo.fi/sv/alberga-skola" }, "name": { "fi": "Alberga skola", "sv": "Alberga skola", "en": "Alberga skola" }, "description": { "fi": "Alberga skola on ruotsinkielinen peruskoulu joka tarjoaa opetusta vuosiluokille 1-6.", "sv": "Alberga skola har ca 100 elever och är belägen invid Alberga idrottspark, där det finns fina möjligheter till naturupplevelser och olika idrottsverksamheter under alla årstider. I Alberga skola arbetar vi för jämlikhet och respekt. Vi jobbar målmedvetet och mångsidigt med läsning. I Monikko finns det 4 enheter under samma tak: Alberga skola (åk 1-6) och Leppävaaran koulu (åk 1-9) samt Alberga daghem och förskola och Monikon päiväkoti. Enheterna i Monikko samarbetar aktivt och vår gemensamma vision är: \"En hemtrevlig uppväxt- och lärmiljö\".", "en": "Alberga skola is a Swedish-speaking school with grades 1-6." }, "telephone": null, "street_address": { "fi": "Veräjäpellonkatu 2-4", "sv": "Grindåkersgatan 2-4", "en": "Veräjäpellonkatu 2-4" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p10218", "has_user_editable_resources": false, "alt_labels": [ "klassinen baletti", "balett (konst)", "balettkonst", "klassisk balett" ], "created_time": "2023-08-16T05:12:24.307654Z", "last_modified_time": "2023-08-16T05:12:24.307672Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 60, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "baletti (taiteet)", "sv": "balett (konstarter)", "en": "ballet (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p10727", "has_user_editable_resources": false, "alt_labels": [ "kansalaisaktivismi", "kansalaisosallistuminen", "kansalaisten osallistuminen", "medborgaraktivism", "medborgardeltagande", "engagemang", "medborgarinflytande" ], "created_time": "2023-08-16T05:18:07.639076Z", "last_modified_time": "2023-08-16T05:18:07.639094Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1714, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "osallistuminen", "sv": "deltagande", "en": "participation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11617", "has_user_editable_resources": false, "alt_labels": [ "nuoriso", "unga" ], "created_time": "2023-08-16T05:18:48.983343Z", "last_modified_time": "2023-08-16T05:18:48.983373Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 9506, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nuoret", "sv": "ungdomar", "en": "young people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11951", "has_user_editable_resources": false, "alt_labels": [ "mediakonst" ], "created_time": "2023-08-16T05:18:49.207705Z", "last_modified_time": "2023-08-16T05:18:49.207723Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "mediataide", "sv": "mediekonst", "en": "media art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1716, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p12650", "has_user_editable_resources": false, "alt_labels": [ "operettisävellykset", "operettkompositioner" ], "created_time": "2023-08-16T05:18:09.824734Z", "last_modified_time": "2023-08-16T05:18:09.824754Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "operetit", "sv": "operetter", "en": "operettas" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13084", "has_user_editable_resources": false, "alt_labels": [ "natur" ], "created_time": "2023-08-16T05:16:37.985735Z", "last_modified_time": "2023-08-16T05:16:37.985760Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 430, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "luonto", "sv": "naturen", "en": "nature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13876", "has_user_editable_resources": false, "alt_labels": [ "lustspel", "comedy films", "huvinäytelmät" ], "created_time": "2023-08-16T05:19:37.901227Z", "last_modified_time": "2023-08-16T05:19:37.901248Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 396, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "komediat", "sv": "komedier", "en": "comedies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1393", "has_user_editable_resources": false, "alt_labels": [ "seurat (järjestötoiminta)", "yhdistykset" ], "created_time": "2023-08-16T05:19:47.711187Z", "last_modified_time": "2024-04-06T04:40:52.636427Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 197, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "järjestöt", "sv": "föreningar", "en": "associations (organisations)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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:p1574", "has_user_editable_resources": false, "alt_labels": [ "special occasions", "fester", "högtider", "högtider och fester", "parties (celebrations)", "tillställningar (fester)" ], "created_time": "2023-08-16T05:19:43.224807Z", "last_modified_time": "2024-03-22T04:40:51.016442Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "juhlat", "sv": "fester och högtider", "en": "celebrations" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p15937", "has_user_editable_resources": false, "alt_labels": [ "imeväisikäiset", "spädbarn", "infants", "bebisar" ], "created_time": "2023-08-16T05:12:54.715337Z", "last_modified_time": "2023-08-16T05:12:54.715360Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "vauvat", "sv": "babyer", "en": "babies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16428", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:09.346796Z", "last_modified_time": "2023-08-16T05:19:09.346813Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 57, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "farssit", "sv": "farser", "en": "farces" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1657", "has_user_editable_resources": false, "alt_labels": [ "indoktrinaatio", "indoktrinering", "kansalaisvaikuttaminen", "vaikutusmahdollisuudet", "påverkande", "påverkande arbete", "påverkansarbete", "påverkningsmöjligheter" ], "created_time": "2023-08-16T05:19:36.228503Z", "last_modified_time": "2023-08-16T05:19:36.228522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "vaikuttaminen", "sv": "påverkan", "en": "influencing" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p17654", "has_user_editable_resources": false, "alt_labels": [ "summer theaters" ], "created_time": "2023-08-16T05:05:52.996011Z", "last_modified_time": "2023-08-16T05:05:52.996029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 57, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kesäteatterit", "sv": "sommarteatrar", "en": "summer theatres" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p181", "has_user_editable_resources": false, "alt_labels": [ "vanha tanssimusiikki", "gammal dansmusik" ], "created_time": "2023-08-16T05:19:45.914400Z", "last_modified_time": "2023-08-16T05:19:45.914419Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssimusiikki", "sv": "dansmusik", "en": "dance music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p18434", "has_user_editable_resources": false, "alt_labels": [ "Western art music", "Western classical music", "klassinen musiikki", "konserttimusiikki", "länsimainen taidemusiikki", "vakava musiikki", "klassisk musik", "konsertmusik", "seriös musik", "västerländsk konstmusik" ], "created_time": "2023-08-16T05:18:50.976439Z", "last_modified_time": "2023-08-16T05:18:50.976459Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "taidemusiikki", "sv": "konstmusik", "en": "art music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1855", "has_user_editable_resources": false, "alt_labels": [ "ei-kielellinen viestintä", "ei-verbaalinen viestintä", "non-verbaalinen viestintä", "ickeverbal kommunikation", "non-verbal kommunikation", "nonverbal kommunikation", "ordlös kommunikation" ], "created_time": "2023-08-16T05:18:35.910098Z", "last_modified_time": "2023-08-16T05:18:35.910122Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sanaton viestintä", "sv": "icke-verbal kommunikation", "en": "nonverbal communication" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1857", "has_user_editable_resources": false, "alt_labels": [ "iskusävelmät", "schlagers", "schlagrar" ], "created_time": "2023-08-16T05:17:39.803522Z", "last_modified_time": "2023-08-16T05:17:39.803541Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "iskelmät", "sv": "schlager", "en": "schlager music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1882", "has_user_editable_resources": false, "alt_labels": [ "rockmusik" ], "created_time": "2023-08-16T05:19:44.077970Z", "last_modified_time": "2023-08-16T05:19:44.077998Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "rock", "sv": "rock (musik)", "en": "rock music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1979", "has_user_editable_resources": false, "alt_labels": [ "kuvaus (valokuvaus)", "fotografi (framställning av bilder)" ], "created_time": "2023-08-16T05:19:42.940777Z", "last_modified_time": "2023-08-16T05:19:42.940793Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "valokuvaus", "sv": "fotografering", "en": "photography" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p20421", "has_user_editable_resources": false, "alt_labels": [ "clubs (music)", "jazz clubs", "rock clubs", "jazzklubit", "keikkapaikat", "klubit (musiikki)", "rockklubit", "jazzklubbar", "klubbar (musik)", "rockklubbar" ], "created_time": "2023-08-16T05:10:00.287630Z", "last_modified_time": "2023-08-16T05:10:00.287649Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikkiklubit", "sv": "musikklubbar", "en": "music clubs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?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": 340, "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" }, { "id": "yso:p22193", "has_user_editable_resources": false, "alt_labels": [ "kokeellinen sirkus", "uusi sirkus", "experimentell cirkus" ], "created_time": "2023-08-16T05:10:15.581015Z", "last_modified_time": "2023-08-16T05:10:15.581042Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 197, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nykysirkus", "sv": "nycirkus", "en": "contemporary circus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2240", "has_user_editable_resources": false, "alt_labels": [ "vetenskap (fenomen)" ], "created_time": "2023-08-16T05:16:51.767668Z", "last_modified_time": "2023-08-16T05:16:51.767692Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tiede", "sv": "vetenskap", "en": "science" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2445", "has_user_editable_resources": false, "alt_labels": [ "massamedia" ], "created_time": "2023-08-16T05:19:10.138910Z", "last_modified_time": "2023-08-16T05:19:10.138927Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 350, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "media", "en": "media" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p24597", "has_user_editable_resources": false, "alt_labels": [ "kuvatulkkaus", "bildtolkning för synskadade" ], "created_time": "2023-08-16T05:10:38.516856Z", "last_modified_time": "2023-08-16T05:10:38.516877Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kuvailutulkkaus", "sv": "syntolkning", "en": "audio description" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25077", "has_user_editable_resources": false, "alt_labels": [ "dockteater (konstarter)", "puppet theater" ], "created_time": "2023-08-16T05:13:40.124933Z", "last_modified_time": "2023-08-16T05:13:40.124951Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "nukketeatteri (taiteet)", "sv": "dockteater (teaterkonst)", "en": "puppet theatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25216", "has_user_editable_resources": false, "alt_labels": [ "multikonstnärlighet", "multikonst (multikonstnärlig verksamhet)" ], "created_time": "2023-08-16T05:10:43.686451Z", "last_modified_time": "2023-08-16T05:10:43.686469Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 84, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "monitaiteisuus", "sv": "multikonstnärlig verksamhet", "en": "multi-art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25476", "has_user_editable_resources": false, "alt_labels": [ "3-D-elokuvat", "3-ulotteiset elokuvat", "kolmiulotteiset elokuvat", "3-D-filmer", "tredimensionella filmer" ], "created_time": "2023-08-16T05:07:03.891303Z", "last_modified_time": "2023-08-16T05:07:03.891323Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 62, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "3D-elokuvat", "sv": "3D-filmer", "en": "3D films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p25977", "has_user_editable_resources": false, "alt_labels": [ "pop-up phenomena" ], "created_time": "2023-08-16T05:07:09.514665Z", "last_modified_time": "2023-08-16T05:07:09.514684Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pop up -ilmiöt", "sv": "pop up-fenomen", "en": "pop up phenomena" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2698", "has_user_editable_resources": false, "alt_labels": [ "graafinen taide", "taidegrafiikka", "grafik (bildkonst)", "grafisk konst", "konstgrafik" ], "created_time": "2023-08-16T05:19:35.073591Z", "last_modified_time": "2023-08-16T05:19:35.073610Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "grafiikka", "sv": "grafik", "en": "graphics (visual arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2762", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:33.337239Z", "last_modified_time": "2023-08-16T05:19:33.337304Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 515, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "terveys", "sv": "hälsa", "en": "health" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2841", "has_user_editable_resources": false, "alt_labels": [ "folklore", "etninen musiikki", "etnomusiikki", "etnisk musik", "ethnic music", "traditional music", "nykykansanmusiikki", "perinnemusiikki", "tanhumusiikki", "etnomusik", "folkdansmusik", "nutidsfolkmusik", "traditionell musik" ], "created_time": "2023-08-16T05:19:34.213952Z", "last_modified_time": "2023-08-16T05:19:34.213970Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kansanmusiikki", "sv": "folkmusik", "en": "folk music (traditional music)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2969", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:40.535052Z", "last_modified_time": "2023-08-16T05:19:40.535069Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "popmusiikki", "sv": "popmusik", "en": "pop music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p29778", "has_user_editable_resources": false, "alt_labels": [ "hardrock", "hårdrock" ], "created_time": "2023-08-16T05:11:22.955383Z", "last_modified_time": "2023-08-16T05:11:22.955399Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "hard rock", "en": "hard rock" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p318", "has_user_editable_resources": false, "alt_labels": [ "lastenleikit", "barnlekar" ], "created_time": "2023-08-16T05:19:10.824660Z", "last_modified_time": "2023-08-16T05:19:10.824677Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 73, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikit", "sv": "lekar", "en": "plays and games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p37827", "has_user_editable_resources": false, "alt_labels": [ "ordkonstpedagogik", "ordkonstundervisning" ], "created_time": "2023-08-16T05:15:59.381056Z", "last_modified_time": "2023-08-16T05:15:59.381073Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sanataidekasvatus", "sv": "ordkonstfostran", "en": "literary art education" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p38773", "has_user_editable_resources": false, "alt_labels": [ "art of comics", "comics (art)", "tecknad seriekonst" ], "created_time": "2023-08-16T05:16:03.115690Z", "last_modified_time": "2023-08-16T05:16:03.115707Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sarjakuvataide", "sv": "seriekonst", "en": "comic art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39492", "has_user_editable_resources": false, "alt_labels": [ "LAN-events", "local area network parties", "LAN-tapahtumat", "lanit", "verkkopelitapahtumat", "LAN-evenemang" ], "created_time": "2023-08-16T05:11:48.242998Z", "last_modified_time": "2023-08-16T05:11:48.243015Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 680, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lähiverkkotapahtumat", "sv": "LAN-partyn", "en": "LAN parties" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4357", "has_user_editable_resources": false, "alt_labels": [ "kontroll över livet", "livshantering", "livskontroll" ], "created_time": "2023-08-16T05:18:41.919048Z", "last_modified_time": "2023-08-16T05:18:41.919208Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elämänhallinta", "sv": "livskompetens", "en": "life management" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p485", "has_user_editable_resources": false, "alt_labels": [ "handarbete", "hantverk", "handarbete och hantverk (arbete)", "hantverk och handarbete (aktivitet)" ], "created_time": "2023-08-16T05:19:43.703641Z", "last_modified_time": "2023-08-16T05:19:43.703658Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 86, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "käsityö (toiminta)", "sv": "handarbete och hantverk (aktivitet)", "en": "handcrafting" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4892", "has_user_editable_resources": false, "alt_labels": [ "fairs", "trade events", "messut (kauppa)", "handelsmässor", "mässor (handel)" ], "created_time": "2023-08-16T05:17:55.604253Z", "last_modified_time": "2023-08-16T05:17:55.604308Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "messut (tapahtumat)", "sv": "mässor (evenemang)", "en": "trade fairs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5000", "has_user_editable_resources": false, "alt_labels": [ "draama", "dramas (plays)", "stage plays", "theatrical plays", "teatterikappaleet", "draman", "dramer", "pjäser", "teaterpjäser", "teaterstycken" ], "created_time": "2023-08-16T05:19:45.568394Z", "last_modified_time": "2023-08-16T05:19:45.568415Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näytelmät", "sv": "skådespel", "en": "plays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5007", "has_user_editable_resources": false, "alt_labels": [ "art of circus", "sirkus (taidelajit)", "cirkus (konstart)", "cirkuskonst" ], "created_time": "2023-08-16T05:18:56.386288Z", "last_modified_time": "2023-08-16T05:18:56.386306Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 179, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sirkustaide", "sv": "cirkus (konstarter)", "en": "circus (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5164", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:11:59.271137Z", "last_modified_time": "2023-08-16T05:11:59.271154Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 95, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "osallisuus", "sv": "delaktighet", "en": "involvement (participation)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6033", "has_user_editable_resources": false, "alt_labels": [ "surroundings", "omgivning" ], "created_time": "2023-08-16T05:19:42.063394Z", "last_modified_time": "2023-08-16T05:19:42.063413Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 163, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ympäristö", "sv": "miljö", "en": "environment" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6421", "has_user_editable_resources": false, "alt_labels": [ "musiikkidraamat", "oopperasävellykset", "oopperateokset", "operakompositioner", "operaverk" ], "created_time": "2023-08-16T05:19:28.559874Z", "last_modified_time": "2023-08-16T05:19:28.559895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "oopperat", "sv": "operor (verk)", "en": "operas" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6455", "has_user_editable_resources": false, "alt_labels": [ "design", "design", "design" ], "created_time": "2023-08-16T05:18:25.621979Z", "last_modified_time": "2023-08-16T05:18:25.621998Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 158, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "muotoilu", "sv": "formgivning", "en": "design (artistic creation)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6674", "has_user_editable_resources": false, "alt_labels": [ "barnskådespel" ], "created_time": "2023-08-16T05:17:18.220243Z", "last_modified_time": "2023-08-16T05:17:18.220283Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 58, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lastennäytelmät", "sv": "barnpjäser", "en": "children's plays" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6834", "has_user_editable_resources": false, "alt_labels": [ "merkkikielet", "dövas teckenspråk", "teckenspråk (döva)" ], "created_time": "2023-08-16T05:19:23.507717Z", "last_modified_time": "2023-08-16T05:19:23.507734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "viittomakieli", "sv": "teckenspråk", "en": "sign language" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7157", "has_user_editable_resources": false, "alt_labels": [ "showt" ], "created_time": "2023-08-16T05:18:00.485084Z", "last_modified_time": "2025-01-14T04:42:31.632733Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "show't", "sv": "shower", "en": "shows" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7158", "has_user_editable_resources": false, "alt_labels": [ "kabareer" ], "created_time": "2023-08-16T05:17:19.628571Z", "last_modified_time": "2023-08-16T05:17:19.628596Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 59, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kabareet", "sv": "kabaréer", "en": "cabarets" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7266", "has_user_editable_resources": false, "alt_labels": [ "konkretismi (kuvataide)", "konkretism (konst)" ], "created_time": "2023-08-16T05:08:25.346620Z", "last_modified_time": "2023-08-16T05:08:25.346640Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 185, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "konkreettinen taide", "sv": "konkret konst", "en": "concrete art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7349", "has_user_editable_resources": false, "alt_labels": [ "safety", "security", "säkerhet (trygghet)", "trygghet" ], "created_time": "2023-08-16T05:19:42.690635Z", "last_modified_time": "2023-08-16T05:19:42.690652Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 92, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "turvallisuus", "sv": "säkerhet och trygghet", "en": "safety and security" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7969", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:18:02.409975Z", "last_modified_time": "2023-08-16T05:18:02.409999Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 58, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "sanataide", "sv": "ordkonst", "en": "literary art" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8025", "has_user_editable_resources": false, "alt_labels": [ "rakennustaide", "byggnadskonst" ], "created_time": "2023-08-16T05:19:07.593256Z", "last_modified_time": "2023-08-16T05:19:07.593299Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 63, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "arkkitehtuuri", "sv": "arkitektur", "en": "architecture" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?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" }, { "id": "yso:p8368", "has_user_editable_resources": false, "alt_labels": [ "videotallenteet", "videoinspelningar", "videoupptagningar", "video recordings" ], "created_time": "2023-08-16T05:16:24.119002Z", "last_modified_time": "2025-11-18T04:41:20.479404Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "videot (teokset)", "sv": "videor (verk)", "en": "videos (works)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8434", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:26.670455Z", "last_modified_time": "2023-08-16T05:19:26.670472Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "viihdemusiikki", "sv": "underhållningsmusik", "en": "light music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8470", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:40.879074Z", "last_modified_time": "2023-08-16T05:19:40.879092Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 72, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kestävä kehitys", "sv": "hållbar utveckling", "en": "sustainable development" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8475", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:19.897765Z", "last_modified_time": "2023-08-16T05:19:19.897782Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuriperintö", "sv": "kulturarv", "en": "cultural heritage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8674", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:12:16.381863Z", "last_modified_time": "2023-08-16T05:12:16.381880Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssikasvatus", "sv": "dansfostran", "en": "dance education" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9058", "has_user_editable_resources": false, "alt_labels": [ "musical theatre", "musikaaliteatteri", "musikalteater", "music theater (art forms)", "musical theater" ], "created_time": "2023-08-16T05:16:26.790933Z", "last_modified_time": "2023-08-16T05:16:26.790952Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 62, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikkiteatteri (taiteet)", "sv": "musikteater (teaterkonst)", "en": "music theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9241", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:18:59.766886Z", "last_modified_time": "2023-08-16T05:18:59.766906Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "satiiri", "sv": "satir", "en": "satire" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9244", "has_user_editable_resources": false, "alt_labels": [ "stå-upp-komik" ], "created_time": "2023-08-16T05:08:33.693878Z", "last_modified_time": "2023-08-16T05:08:33.693903Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 126, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "stand up -komiikka", "sv": "ståuppkomik", "en": "stand-up comedy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9375", "has_user_editable_resources": false, "alt_labels": [ "lopptorg", "second hand-butiker" ], "created_time": "2023-08-16T05:14:52.226647Z", "last_modified_time": "2023-08-16T05:14:52.226662Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirpputorit", "sv": "loppmarknader", "en": "flea markets" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9376", "has_user_editable_resources": false, "alt_labels": [ "bazaars (charities)", "rummage sales" ], "created_time": "2023-08-16T05:12:20.116401Z", "last_modified_time": "2023-08-16T05:12:20.116418Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "myyjäiset", "sv": "försäljningar (evenemang)", "en": "jumble sales" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p9778", "has_user_editable_resources": false, "alt_labels": [ "samhälle (fenomen)" ], "created_time": "2023-08-16T05:19:24.039733Z", "last_modified_time": "2023-08-16T05:19:24.039749Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 55, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "yhteiskunta", "sv": "samhället", "en": "society" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "10" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340" }, "description": { "fi": "lapset" } }, { "is_free": false, "offer_price_groups": [], "price": { "fi": "5" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=TLDG_174_Toistuvat_tapahtumat_v112141050340" }, "description": { "fi": "aikuiset" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10218/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11951/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1574/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15937/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16428/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1657/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17654/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p181/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1882/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1979/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2240/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2445/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24597/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25077/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25977/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2698/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2841/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29778/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p37827/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38773/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4892/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5000/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5164/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6421/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6834/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7157/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7158/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8025/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8434/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8674/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9058/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9241/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9375/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9376/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9778/?format=api" } ], "created_time": "2025-10-28T13:30:29.004491Z", "last_modified_time": "2025-10-28T13:30:29.004507Z", "date_published": "2025-05-30T09:49:37Z", "start_time": "2025-10-30T09:58:00Z", "end_time": "2025-10-30T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 2, "audience_max_age": 24, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 150, "minimum_attendee_capacity": 100, "enrolment_start_time": "2025-10-30T07:00:00+02:00", "enrolment_end_time": "2025-10-30T13:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "name": { "fi": "Aika test main" }, "description": { "fi": "<div><p>TLDG_174_Toistuvat tapahtumat v1</p></div>" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Digia" }, "short_description": { "fi": "TLDG_174_Toistuvat tapahtumat v1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:9d7ed465-3b3d-f011-b4cc-main99/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncwof32e", "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 ] }, "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" }, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "description": null, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "@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": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1716, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": 7202, "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": 13454, "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: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-28T13:30:00.591662Z", "last_modified_time": "2025-10-28T13:30:00.591683Z", "date_published": "2025-10-28T13:16:00Z", "start_time": "2025-10-29T08:00:00Z", "end_time": "2025-11-14T18: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, "info_url": null, "name": { "fi": "Elokuvan taikaa™ -näyttely", "sv": "Filmens magi (Elokuvan taikaa™) utställning", "en": "The magic of film (Elokuvan taikaa™) exhibition" }, "description": { "fi": "<p>ELOKUVAN TAIKAA™ on lasten luova konsepti, joka on kiertänyt kulttuuritiloja ja kouluja vuodesta 2022. Konseptissa sukelletaan mielikuvitusmaailmaan ja lähdetään etsimään oman elokuvan hahmoja, tapahtumapaikkoja ja tarinaa.</p><p>ELOKUVAN TAIKAA™ konsepti eroaa muista elokuvakasvatuskonsepteista tekoälyavusteisuudellaan. Tekoälyn avulla lasten omat elokuvat tuodaan eloon niin tekstinä, kuin kuvina, ja videoina.</p><p>Sellon näyttelyssä pääset lukemaan lasten luomia elokuvia. Lapsilla on mahdollisuus osallistua luomistyöhön myös itse Lastenmaan puolella. Työpajat on mahdollistanut Espoon Kaupungin Kulttuuriavustus.</p><p>Tervetuloa mukaan mielikuvitusmatkalle!</p><p>ELOKUVAN TAIKAA™ konseptin on luonut elokuvantekijä, taiteilija ja kulttuurituottaja <strong>Riikka Mustakallio</strong>, aka Rigulio Graak.</p><p><br></p>", "sv": "<p>Elokuvan taikaa™ (Filmens magi) är ett filmutbildningsprojekt för barn och en interaktiv utställning.</p>", "en": "<p>Elokuvan taikaa™ (The Magic of Film) is a film education project for children and an interactive exhibition.</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleri Anna", "en": "Gallery Anna" }, "provider": null, "short_description": { "fi": "Elokuvan taikaa™ on lasten elokuvakasvatusprojekti ja interaktiivinen näyttely.", "sv": "Elokuvan taikaa™ (Filmens magi) är en interaktiv utställning och ett filmutbildningsprojekt för barn.", "en": "Elokuvan taikaa™ (The Magic of Film) is a film education project for children and an interactive exhibition." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncwof32e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67217", "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": 982, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "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" }, "name": { "fi": "Stoa", "sv": "Stoa", "en": "Cultural Centre Stoa" }, "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." }, "telephone": { "fi": "+358 40 160 3755" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:105", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.060968Z", "last_modified_time": "2024-02-06T13:19:14.616316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1322, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Lastentapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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": 987, "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": 6037, "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: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": 5095, "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:669", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.230765Z", "last_modified_time": "2024-02-06T13:19:17.537912Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 340, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muut kulttuuritapahtumat (monitaide)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1177, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:733", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.469645Z", "last_modified_time": "2024-02-06T13:19:17.877406Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 250, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Luennot ja keskustelut" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p14004", "has_user_editable_resources": false, "alt_labels": [ "diskussion" ], "created_time": "2023-08-16T05:19:31.102174Z", "last_modified_time": "2023-08-16T05:19:31.102192Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2670, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "keskustelu", "sv": "samtal", "en": "conversation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p15875", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:09:20.413725Z", "last_modified_time": "2023-08-16T05:09:20.413743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 343, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "luennot", "sv": "föreläsningar", "en": "lectures" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2026-04-15T04:41:25.115920Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1141, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta (sosiaalityö)", "sv": "verkstadsverksamhet (socialt arbete)", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 13454, "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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491213, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T13:12:11.397283Z", "last_modified_time": "2025-10-28T13:12:11.397295Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778560.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491213/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-10-28T13:12:11.313189Z", "last_modified_time": "2025-10-28T13:12:11.534075Z", "date_published": null, "start_time": "2025-12-13T10:00:00Z", "end_time": "2025-12-13T15: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/571D85114C399BEBC3A16A9E73EEDB10/Arabian_kielen_paiva", "en": "http://www.stoa.fi/en/events/event/571D85114C399BEBC3A16A9E73EEDB10/Arabic_Language_Day_" }, "name": { "fi": "Arabian kielen päivä – Juhla kielelle, kulttuurille, identiteetille ja yhteisölle!", "en": "Arabic Language Day – A celebration of language, culture, identity, and community!" }, "description": { "fi": "<p>Päivä kokoaa yhteen arabian kieltä puhuvat, monikulttuuriset perheet sekä kaikki, joita arabian kieli ja kulttuurit kiinnostavat.</p><p>Tapahtuman järjestävät Familia ja Mirsal yhteistyössä.</p><p>Ohjelmassa on musiikkia ja esiintymisiä, työpajoja, ruokaa, käsitöitä ja lasten taidetta, sekä paneelikeskusteluja ja puheenvuoroja, joissa käsitellään muun muassa:<br>- Monikielinen kielenkehitys – miten kielet elävät rinnakkain perheissä ja yhteisöissä<br>- Yhteen puhaltaminen – miksi yhteistyö ja yhteisöllisyys ovat tärkeämpiä kuin kilpailu tai “me, myself and I” -ajattelu</p><p>Arabian kielen päivä muistuttaa, että kieli on enemmän kuin viestintää – se on silta kulttuurien välillä, osa identiteettiä ja yhteisöllisyyden lähde. Päivä tekee näkyväksi arabikulttuurin monimuotoisuuden ja sen merkityksen Suomessa asuville ihmisille.</p><p>Tule juhlimaan yhteyttä, luovuutta ja kulttuuria – yhdessä!<br>Tervetuloa kaikenikäiset!</p><p>Vapaa pääsy, Stoan aulassa.</p>", "en": "<p>Organised by Familia and Mirsal, the event brings together Arabic speakers, multicultural families, and everyone interested in the Arabic language and cultures.</p><p>The day features music, performances, workshops, food, crafts, and children’s art, as well as panel discussions and talks on topics such as:<br>- Multilingual language development – how languages grow and coexist in families and communities<br>- Unity over division – why collaboration matters more than competition or the “me, myself and I” mindset within communities</p><p>Arabic Language Day reminds us that language is more than communication – it’s a bridge between cultures, a part of identity, and a source of belonging.</p><p>The event highlights the richness and diversity of Arabic culture and its meaningful place in Finnish society.</p><p>Join us to celebrate connection, creativity, and culture – together!</p><p>Stoa Lobby, Helsinki<br>Free entry<br>All ages welcome!</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Päivä kokoaa yhteen arabian kieltä puhuvat, monikulttuuriset perheet sekä kaikki, joita arabian kieli ja kulttuurit kiinnostavat.", "en": "Organised by Familia and Mirsal, the event brings together Arabic speakers, multicultural families, and everyone interested in the Arabic language and cultures." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67217/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67161", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "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:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 772, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "telephone": { "fi": "+358 9 310 85983" }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 808, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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": 384, "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": 6037, "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": 4890, "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": 5095, "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": 1123, "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": 340, "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491107, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-16T08:14:06.944853Z", "last_modified_time": "2025-10-16T08:14:06.944905Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778306.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491107/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-16T07:13:29.543914Z", "last_modified_time": "2025-10-28T12:13:09.586282Z", "date_published": null, "start_time": "2025-12-03", "end_time": "2025-12-18", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E1EBD0E510949000D0798569E8C610AB/Majakat_ja_pookit", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E1EBD0E510949000D0798569E8C610AB/Majakat_ja_pookit", "en": "http://www.vuotalo.fi/en/events/event/E1EBD0E510949000D0798569E8C610AB/Majakat_ja_pookit" }, "name": { "fi": "Majakat ja pookit", "sv": "Majakat ja pookit", "en": "Majakat ja pookit" }, "description": { "fi": "<p>Näyttelyssäni katsojat pääsevät tutustumaan suomalaisiin majakoihin ja pookeihin. Majakassa on vilkkuva valo eli loisto, joka sijaitsee ylhäällä majakkatornissa. Pookit ovat tunnusmajakoita, joissa ei ole valoa.</p><p>Olen harrastanut majakoilla käymistä ja samalla valokuvannut niitä noin 25 vuoden ajan. Olen ehtinyt käydä melkein kaikilla Suomen majakoilla. Suomessa on lähemmäksi 50 majakkaa ja pookeja tätäkin enemmän.</p><p>On olemassa paljon muitakin merimerkkejä, kuten poijuja, viittoja, reimareita ja linjavaloja, joiden avulla turvallinen meriliikenne toimii. Yksi hauskimmista merimerkeistä on kummeli. Kummelit ovat isoja kivikasoja veden äärellä. Ne on yleensä maalattu valkoisiksi. Suomessa on myös käytetty majakkalaivoja pahimmissa haaksirikkopaikoissa. 1800-luvun lopun ja 1900-luvun alun taitteessa rakennettiin useimmat suomalaiset majakat, viimeisimmät rakennettiin 1950-luvulla. Majakat on rakennettu pääasiassa kallioista louhituista kivistä, teräsbetonista ja tiilistä. Pookit on rakennettu melkein kaikki puusta.</p><p>Moneen majakkaan pääsee sisälle tutustumaan kesäaikana. Monen majakan pihapiirissä on rakennuksia, joissa voi yöpyä. Olen asunut Märketin majakalla yhteensä noin 30 päivää ja ollut siellä talkoolaisena. Siellä voivat myös turistit yöpyä, kuten myös Kylmäpihlajan majakassa ja Bengtskärin majakassa. Kallbådan majakkaan on myös viime kesänä valmistunut tiloja yöpymiseen. Autoillen saavutettavia ovat myös Kallon-, Marjaniemen-, Suomenlinnan- ja Utön-majakat. <br> <br>Toivon, että kuvat innostavat muitakin retkeilemään Suomen rannikolla!<br> <br>Kaarina Uusikivi<br> <br>Näyttely sijaitsee Vuotalon 2. kerroksessa, vitriinikäytävällä. Tervetuloa!</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67161/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66959", "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": 1372, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "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" }, "name": { "fi": "Malmitalo", "sv": "Malms kulturhus", "en": "Cultural Centre Malmitalo" }, "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." }, "telephone": { "fi": "+358 9 310 80831" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:29", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.424657Z", "last_modified_time": "2024-02-06T13:19:13.738407Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1163, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Elokuvat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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": 1360, "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: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": 6037, "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": 4890, "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": 5095, "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": 1123, "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:p16919", "has_user_editable_resources": false, "alt_labels": [ "road movies", "tie-elokuvat" ], "created_time": "2023-08-16T05:05:45.968615Z", "last_modified_time": "2023-08-16T05:05:45.968632Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 813, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "road moviet", "sv": "roadmovies", "en": "road films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-anna-minun-rakastaa-enemmaen-malmitalo-20681438/", "sv": "https://www.lippu.fi/event/kino-helios-anna-minun-rakastaa-enemmaen-malmitalo-20681438/", "en": "https://www.lippu.fi/event/kino-helios-anna-minun-rakastaa-enemmaen-malmitalo-20681438/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490919, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-26T09:13:37.218209Z", "last_modified_time": "2025-09-26T09:13:37.218226Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777082.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490919/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-26T09:13:37.112255Z", "last_modified_time": "2025-10-28T12:13:08.772942Z", "date_published": null, "start_time": "2025-11-27T11: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3CA24F64150E92635F02A87F064B1730/HopeaCine_Anna_minun_rakastaa_enemman_tekijavieraina_ohjaaja_Oskari_Sipola_ja_kirjailija_Juha_Itkonen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3CA24F64150E92635F02A87F064B1730/HopeaCine_Anna_minun_rakastaa_enemman_tekijavieraina_ohjaaja_Oskari_Sipola_ja_kirjailija_Juha_Itkonen", "en": "http://www.malmitalo.fi/en/events/event/3CA24F64150E92635F02A87F064B1730/HopeaCine_Anna_minun_rakastaa_enemman_tekijavieraina_ohjaaja_Oskari_Sipola_ja_kirjailija_Juha_Itkonen" }, "name": { "fi": "HopeaCine: Anna minun rakastaa enemmän + tekijävieraina ohjaaja Oskari Sipola ja kirjailija Juha Itkonen", "sv": "HopeaCine: Anna minun rakastaa enemmän + tekijävieraina ohjaaja Oskari Sipola ja kirjailija Juha Itkonen", "en": "HopeaCine: Anna minun rakastaa enemmän + tekijävieraina ohjaaja Oskari Sipola ja kirjailija Juha Itkonen" }, "description": { "fi": "<p>Cinema Orionissa alkanut HopeaCine laajentuu tänä syksynä Vuotalolle ja Malmitalolle!</p><p>Anna minun rakastaa enemmän on vahva tarina rakkaudesta, musiikista ja itsensä löytämisen monimutkaisista poluista. Elokuvan keskiössä ovat pikkukaupungin kasvatit, muusikonalku Antti ja kirjallisuudenopiskelija Suvi, jotka tapaavat kotibileissä ja rakastuvat ensisilmäyksellä. Heidän rakkautensa kumpuaa intohimosta musiikkiin. Antti on aina unelmoinut rocktähteydestä ja pyytää Suvin laulajaksi bändiinsä. Hetken kaikki on täydellistä ja yhdessä jaettua. Kun menestyksen portit aukeavat vain Suville, Antti jää miettimään toteutumattomia unelmiaan. Olivatko he toisilleen oikeita, mutta hetki vain väärä?</p><p>Tekijävieraina elokuvan jälkeen keskustelemassa elokuvan ohjaaja Oskari Sipola ja alkuperäisen romaanin, johon elokuva perustuu, kirjailija Juha Itkonen.</p><p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. Suomeksi puhutut HopeaCine-näytökset on selkotekstitetty suomeksi.</p>", "sv": "<p>HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!</p><p>HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!<br>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden. Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som berättar om processen för att göra filmen efter föreställningen och erbjuder nytt att tänka på för att fördjupa filmvisningen.</p><p>Språk: finska</p>", "en": "<p>HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!</p><p>HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!<br>Designed for seniors, HopeaCine's programme features new Finnish films once a month. Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film.</p><p>Language: Finnish</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Cinema Orionissa alkanut HopeaCine laajentuu tänä syksynä Vuotalolle ja Malmitalolle!", "sv": "HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!", "en": "HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66959/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agncvl2bqi", "has_user_editable_resources": true, "location": { "id": "tprek:41835", "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:puotinharju", "municipality": "Helsinki", "name": { "fi": "Puotinharju", "sv": "Botbyhöjden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vartiokylä", "municipality": "Helsinki", "name": { "fi": "Vartiokylä", "sv": "Botby" } } ], "created_time": "2023-08-15T10:17:46.738168Z", "last_modified_time": "2025-12-16T10:09:40.422851Z", "custom_data": null, "email": null, "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": 4438, "image": 9433, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.076294, 60.212757 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": null, "name": { "fi": "Itäkeskuksen uimahalli", "sv": "Östra centrums simhall", "en": "Itäkeskus swimming hall" }, "description": { "fi": "1993 avattu ja maan alle kallion sisään rakennettu Itäkeskuksen uimahalli on suosittu ja monipuolinen liikuntapaikka Itä-Helsingissä, Puotinharjussa. Uimahallissa on yhteensä viisi allasta: isoallas, opetus- ja lastenallas sekä poreallas ja kylmävesiallas. Hallissa on myös iso ja pieni vesiliukumäki, hyppytorni sekä mahdollisuus virtuaaliseen Hydrohex-vesijumppaan. Uimahallissa on seitsemän saunaa, joista yksi on höyrysauna. Uimahallin tiloissa on myös kaksi kuntosalia ja liikuntasali. Kuntosalikäynti ja Hydrohex-vesijumppa sisältyvät uimahallikäynnin hintaan. Oleskelun aikaraja uimahallin tiloissa on 2 tuntia. Vesijuoksuvöitä voi lainata altaan vierestä. Pukeutumistilassa on lukolliset kaapit, joita varten tarvitset 50 sentin kolikon. Kaappia varten voit myös ostaa kassalta 50 sentin hintaisen poletin. Uimahallin tiloissa on myös esteetön unisex-pukuhuone. Pukuhuoneen avaimen saa kassalta pyytämällä. Noudatathan uimapukuohjeistusta, joka löytyy \"Uimapukuohjeistus\"-linkin kautta. Lisätietoa hallin muista liikuntapaikoista saat \"Uimahallin liikuntapaikat\" -linkin kautta. Saapuminen: Itäkeskuksen uimahalli sijaitsee noin 10 minuutin kävelymatkan päässä Itäkeskuksen metroasemalta. Uimahalliin on helppo tulla julkisilla liikennevälineillä ja polkupyörällä, ja sen vieressä on pysäköintialue.", "sv": "Östra centrums simhall, även känd som tropiken i öster, är ett hela familjens rekreationscentrum som utstrålar 1990-talets välbekanta och nostalgiska stämning. I Östra centrums simhall kan man bada i tre bassänger, koppla av i jacuzzin, tumla i vattenrutschbanorna, härdas i kallvattenbassängen och värma sig i fem standardbastur och en ångbastu. Med simhallens inträdesavgift har kunderna också tillgång till gymmet och idrottssalarna med högklassiga och moderna träningsredskap. På bassängsidan finns ny virtuellutrustning för självständig vattengymnastik och för simskolor i egen regi i barnbassängen. Simhallen har även en unisex-omklädningsrum som är öppet för alla, där bland annat personer från könsminoriteter, familjer med spädbarn samt kunder med rörelsehinder kan klä om och duscha i lugn och ro. Det tillgängliga omklädningsrummet har åtta omklädningsbås och cirka 40 skåp, och nyckeln fås från simhallens kassa.", "en": "Itäkeskus swimming hall, also known as the eastern tropics, is a recreational centre for the entire family with a touch of familiar and nostalgic 1990s atmosphere. Itäkeskus swimming hall features three pools, a relaxing jacuzzi, two thrilling waterslides, an invigorating cold water pool, five regular saunas and one steam sauna. At the cost of the swimming hall entrance fee, customers also have at their disposal gyms and gymnasiums with modern, high-quality gym equipment. The pool area is equipped with brand-new virtual devices for personal water aerobics and, at the children's pool, for learning how to swim. The swimming hall also features an unisex changing room open for everyone, where individuals, including gender minorities, families with babies, and customers with mobility limitations, can dress and shower in privacy. The accessible changing room has eight changing booths and 40 lockers, and you can request a key at the swimming hall's cash desk." }, "telephone": { "fi": "+358 9 310 87202" }, "street_address": { "fi": "Olavinlinnantie 6", "sv": "Olofsborgsvägen 6", "en": "Olavinlinnantie 6" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:41835/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p2771", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:18:53.164665Z", "last_modified_time": "2023-08-16T05:18:53.164683Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 178, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ulkoilu", "sv": "friluftsliv", "en": "outdoor recreation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?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": [], "price": null, "info_url": { "fi": "" }, "description": null } ], "data_source": "helsinki", "publisher": "ahjo:u021900", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T11:58:40.056859Z", "last_modified_time": "2025-10-28T11:58:40.056873Z", "date_published": null, "start_time": "2025-10-28T07:00:00Z", "end_time": "2025-11-18T07: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": 3, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "" }, "name": { "fi": "Leenan syksyn sieniretki " }, "description": { "fi": "<p>Lorem ipsum Leenan testi strategiajulkaisijalla.</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "" }, "provider": { "fi": "Leena" }, "short_description": { "fi": "Lorem ipsum Leenan testi strategiajulkaisijalla." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agncvl2bqi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve33li", "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 ] }, "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" }, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "description": null, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "@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": "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": 2848, "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" }, { "id": "yso:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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": 1943, "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" }, { "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": 7202, "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490895, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-24T11:15:24.338597Z", "last_modified_time": "2025-09-24T11:15:24.338612Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png", "name": "", "cropping": "250,0,746,496", "photographer_name": "", "alt_text": "Valkoinen, partasuinen mies valkoisessa harsohameessa ja mustassa hupparissa istuu värikästä seinää vasten.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490895/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T11:00:15.530215Z", "last_modified_time": "2025-10-28T11:00:15.530233Z", "date_published": null, "start_time": "2025-12-13T13:00:00Z", "end_time": "2025-12-13T13:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "name": { "fi": "Tanssiteatteri Tsuumi: Your Solo in Me", "sv": "Dansteater Tsuumi: Your Solo in Me", "en": "Dance Theatre Tsuumi: Your Solo in Me" }, "description": { "fi": "<p>Tule katsomaan millaisia esityksiä syntyy kirjastossa kun päätösvalta teoksen vaatetuksesta, musiikista, teemasta ja tilan käytöstä annetaan tällä kertaa esityksen katsojille. Työpajamaisessa teoksessa pääset itse kokeilemaan koreografin työhön liittyviä valintoja ja ihailemaa omaa tai toisen katsojan luomaa tanssiteosta. Aiempaa kokemusta ei tarvita, uteliaisuus ja kokeilunhalu riittävät!</p><p>Voit tulla tekemään teoksen vaikka moneen kertaan, sillä Tsuumi on teoksen kanssa kiertueella Espoon kaupungin kirjastossa.</p><p><br></p><p>TAPIOLAN KIRJASTO</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENAN KIRJASTO</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVAN KIRJASTO</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSEN KIRJASTO</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLON KIRJASTO</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>", "sv": "<p>Kom och se vilka föreställningar som uppstår i biblioteket när beslut om verkets kostym, musik, tema och rumsanvändning denna gång ges till publiken. I det verkstadsliknande verket får du själv prova på koreografens val och beundra ett dansverk skapat av dig själv eller en annan åskådare. Ingen tidigare erfarenhet behövs – nyfikenhet och lust att prova räcker!</p><p>Du kan komma och skapa ett verk flera gånger, eftersom Tsuumi turnerar med föreställningen i Esbo stads bibliotek.</p><p><br></p><p>TAPIOLA BIBLIOTEK</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENA BIBLIOTEK</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVA BIBLIOTEK</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSEN BIBLIOTEK</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLO BIBLIOTEK</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>", "en": "<p>Come and see what kinds of performances emerge in the library when the decisions about costume, music, theme, and use of space are handed over to the audience. In this workshop-like piece, you’ll get to try out the choices a choreographer makes and admire a dance work created by yourself or another viewer. No prior experience is needed – curiosity and a willingness to experiment are enough!</p><p><br></p><p>You can come and create a piece more than once, as Tsuumi is touring with the performance in the libraries of the City of Espoo.</p><p><br></p><p>TAPIOLA LIBRARY</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENA LIBRARY</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVA LIBRARY</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSE LIBRARY</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLO LIBRARY</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Tsuumi", "sv": "Tsuumi", "en": "Tsuumi" }, "short_description": { "fi": "Tanssiteatteri Tsuumin esitys tekee katsojasta koreografin kun tanssitaiteilija Patrik Riipinen herättää katsojien visiot eloon yleisön silmien edessä. ", "sv": "Dansteater Tsuumis föreställning gör publiken till koreograf när danskonstnären Patrik Riipinen väcker åskådarnas visioner till liv inför deras ögon.", "en": "Dance Theatre Tsuumi’s performance turns the audience into choreographers as dance artist Patrik Riipinen brings their visions to life before their eyes." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve33li/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve34ui", "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 ] }, "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" }, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "description": null, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "@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": "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": 2848, "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" }, { "id": "yso:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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": 1943, "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" }, { "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": 7202, "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490895, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-24T11:15:24.338597Z", "last_modified_time": "2025-09-24T11:15:24.338612Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f4bc4400-b3f9-4892-a9da-f4be46535368.png", "name": "", "cropping": "250,0,746,496", "photographer_name": "", "alt_text": "Valkoinen, partasuinen mies valkoisessa harsohameessa ja mustassa hupparissa istuu värikästä seinää vasten.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490895/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:59:21.658283Z", "last_modified_time": "2025-10-28T10:59:21.658303Z", "date_published": null, "start_time": "2025-12-12T15:00:00Z", "end_time": "2025-12-12T15:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "name": { "fi": "Tanssiteatteri Tsuumi: Your Solo in Me", "sv": "Dansteater Tsuumi: Your Solo in Me", "en": "Dance Theatre Tsuumi: Your Solo in Me" }, "description": { "fi": "<p>Tule katsomaan millaisia esityksiä syntyy kirjastossa kun päätösvalta teoksen vaatetuksesta, musiikista, teemasta ja tilan käytöstä annetaan tällä kertaa esityksen katsojille. Työpajamaisessa teoksessa pääset itse kokeilemaan koreografin työhön liittyviä valintoja ja ihailemaa omaa tai toisen katsojan luomaa tanssiteosta. Aiempaa kokemusta ei tarvita, uteliaisuus ja kokeilunhalu riittävät!</p><p>Voit tulla tekemään teoksen vaikka moneen kertaan, sillä Tsuumi on teoksen kanssa kiertueella Espoon kaupungin kirjastossa.</p><p><br></p><p>TAPIOLAN KIRJASTO</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENAN KIRJASTO</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVAN KIRJASTO</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSEN KIRJASTO</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLON KIRJASTO</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>", "sv": "<p>Kom och se vilka föreställningar som uppstår i biblioteket när beslut om verkets kostym, musik, tema och rumsanvändning denna gång ges till publiken. I det verkstadsliknande verket får du själv prova på koreografens val och beundra ett dansverk skapat av dig själv eller en annan åskådare. Ingen tidigare erfarenhet behövs – nyfikenhet och lust att prova räcker!</p><p>Du kan komma och skapa ett verk flera gånger, eftersom Tsuumi turnerar med föreställningen i Esbo stads bibliotek.</p><p><br></p><p>TAPIOLA BIBLIOTEK</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENA BIBLIOTEK</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVA BIBLIOTEK</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSEN BIBLIOTEK</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLO BIBLIOTEK</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>", "en": "<p>Come and see what kinds of performances emerge in the library when the decisions about costume, music, theme, and use of space are handed over to the audience. In this workshop-like piece, you’ll get to try out the choices a choreographer makes and admire a dance work created by yourself or another viewer. No prior experience is needed – curiosity and a willingness to experiment are enough!</p><p><br></p><p>You can come and create a piece more than once, as Tsuumi is touring with the performance in the libraries of the City of Espoo.</p><p><br></p><p>TAPIOLA LIBRARY</p><p>pe ilta 24.10. 18.30 </p><p>ja la 25.10. klo 13 ja 15.30</p><p> </p><p>ISON OMENA LIBRARY</p><p>ke 29.10. klo 17</p><p>to 30.10. klo 9.30-10.30 ja klo 12.30-13.30 </p><p> </p><p>LIPPULAIVA LIBRARY</p><p>Keskiviikko 12.11. klo 10 ja klo 17 </p><p>Torstai 13.11. iltanäytös klo 17.00 </p><p> </p><p>ENTRESSE LIBRARY</p><p>pe 28.11. Klo 17 </p><p>la 29.11. klo 13 ja 15.30 </p><p> </p><p>SELLO LIBRARY</p><p>pe 12.12. klo 9.30 ja 17</p><p>la 13.12. Klo 15</p>" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": { "fi": "Tsuumi", "sv": "Tsuumi", "en": "Tsuumi" }, "short_description": { "fi": "Tanssiteatteri Tsuumin esitys tekee katsojasta koreografin kun tanssitaiteilija Patrik Riipinen herättää katsojien visiot eloon yleisön silmien edessä. ", "sv": "Dansteater Tsuumis föreställning gör publiken till koreograf när danskonstnären Patrik Riipinen väcker åskådarnas visioner till liv inför deras ögon.", "en": "Dance Theatre Tsuumi’s performance turns the audience into choreographers as dance artist Patrik Riipinen brings their visions to life before their eyes." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve34ui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }