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=238
{ "meta": { "count": 32780, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=239", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=237" }, "data": [ { "id": "espoo_le:agnfr3ecky", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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: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": 7188, "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": 13453, "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": [], "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-11-06T10:48:31.052724Z", "last_modified_time": "2025-11-06T10:48:31.052743Z", "date_published": "2025-11-06T10:38:46.535000Z", "start_time": "2025-11-08T09:00:00Z", "end_time": "2025-11-08T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Isänpäiväkortti askartelua", "sv": "Fars dag-kort tillverkning", "en": "Father's Day card crafting" }, "info_url": null, "provider": { "fi": "Omnia", "sv": "Omnia", "en": "Omnia" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider_contact_info": null, "name": { "fi": "Isänpäiväkortti askartelua", "sv": "Fars dag-kort tillverkning", "en": "Father's Day card crafting" }, "description": { "fi": "<p>Tervetuloa Omnian opiskelijoiden järjestämään isänpäiväkortti askarteluun kirjastomme pajaan.</p>", "sv": "<p>Välkommen till fars dag-korttillverkningsevenemanget som anordnas av Omnia-studenter i vår biblioteksverkstad.</p>", "en": "<p>Welcome to the Father's Day card crafting event organized by Omnia students in our library makerspace.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfr3ecky/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22nxmm", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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: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: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": 7188, "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n23q/?format=api" }, "event_status": "EventCancelled", "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:KOTO", "sub_events": [], "images": [ { "id": 153076, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T10:57:29.523947Z", "last_modified_time": "2024-03-15T10:57:29.523981Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/pexels-porapak-apichodilok-346709.jpg", "name": "", "cropping": "501,0,2499,1998", "photographer_name": "", "alt_text": "ihminen soittaa ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153076/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-08T11:17:32.350037Z", "last_modified_time": "2025-11-06T09:58:13.243755Z", "date_published": null, "start_time": "2025-11-06T14:30:00Z", "end_time": "2025-11-06T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Intermediate Ukulele Group. We play popular Finnish and English tunes. Participation is free of charge and no pre-registration" }, "info_url": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "provider_contact_info": null, "name": { "fi": "PERUUTETTU Ukulelen jatkoryhmä", "en": "CANCELLED Ukulele, Intermediate Group" }, "description": { "fi": "<p>PERUUTETTU 6.11</p><p>Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Välillä haastamme myös itseämme soittamalla melodioita ja opettamalla uusia sointuja ja komppeja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Olet aina tervetullut mukaan! Kirjastolla on myös ukuleleja joita voit lainata tunnin ajaksi.</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta</p><p><br></p><p>Ryhmä kokoontuu torstaisin klo 16.30-17.30 Sellon kirjaston Jaminurkassa. Ensimmäinen tunti on torstaina 11.9.2025</p><p>Huom. ei tuntia viikolla 42</p><p><br></p><p>#musiikki #ukulele #sello #ryhmä #kirjasto</p>", "en": "<p>CANCELLED 6.11</p><p>Thursday at 16.30-17.30 in Sello Library Jaminurkka.</p><p> </p><p>Welcome to the Espoo City Library intermediate ukulele group. We play popular Finnish and English songs. From time to time we challenge ourselves by learning new chords, melodies and strums. Relaxing atmosphere and community are important values of the group. There are ukuleles in the library that you can borrow for the lesson.</p><p><br></p><p>Participation is free and no pre-registration is required.</p><p><br></p><p>First lesson is Thrusday 11.9.2025</p><p>No class 16th of October</p><p>#music #ukulele #sello #library</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nxmm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22norq", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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: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: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": 7188, "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": 13453, "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nsii/?format=api" }, "event_status": "EventCancelled", "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:KOTO", "sub_events": [], "images": [ { "id": 150432, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T12:23:54.433662Z", "last_modified_time": "2024-03-15T12:23:54.433684Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ukulele-2205860_1920.jpg", "name": "", "cropping": "518,0,1402,885", "photographer_name": "", "alt_text": "kolme ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-08T11:48:39.690986Z", "last_modified_time": "2025-11-06T09:56:55.436670Z", "date_published": null, "start_time": "2025-11-06T15:45:00Z", "end_time": "2025-11-06T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Kirjastolla on 15 lainasoitinta tunnin ajaksi. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. There are 15 ukuleles that can be borrowed for the class. Participation is free of charge." }, "info_url": null, "provider": null, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "provider_contact_info": null, "name": { "fi": "PERUUTETTU Ukulele 7-12-vuotiaiden ryhmätunti", "en": "CANCELLED Ukulele - 7- to 12-year-old" }, "description": { "fi": "<p>PERUUTETTU 6.11</p><p>Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Tunneilla on tarkoitus tutustua musiikkiin monipuolisesti. Harjoittelemme sointujen, sekä melodian soittamista kappaleiden avulla. Lisäksi teemme musiikin hahmottamista ja ryhmäytymistä tukevia harjoituksia leikkimällä ja piirtämällä. Opetus on oppilaslähtöistä. Kirjastolla on 15 ukulelea, joita voi lainata tunnin ajaksi.</p><p>Ensimmäinen tunti on 11.9.2025</p><p><strong>Tunnille mahtuu 15 lasta. Osallistuminen on maksutonta.</strong></p><p><strong>Ei tuntia 16.10</strong></p><p><br></p><p>Ryhmää vetää Lauri Iljin</p><p>lauri.iljin(at)espoo.fi</p><p>#musiikki #ukulele #sello #lapset #nuoret</p>", "en": "<p>CANCELLED 6.11</p><p>Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. In the Ukulele Group we learn basic of the music theory and playing an ukulele. We practice how to play melody and harmony with well-known songs. Teaching is student-centered. The Library has 15 ukuleles that can be borrowed for the lesson.</p><p>First class is 11.9.2025</p><p><strong>15 children can attend the class. Participation is free of charge.</strong></p><p><strong>No class 16th of October</strong></p><p><br></p><p><br></p><p>Lauri Iljin teaches the group</p><p>lauri.iljin(at)espoo.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22norq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfqsavoy", "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" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "telephone": { "fi": "+358 50 428 9392" }, "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, "@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: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": 7188, "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": 13453, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "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-11-06T07:41:37.074164Z", "last_modified_time": "2025-11-06T08:48:33.954377Z", "date_published": "2025-11-06T07:37:00Z", "start_time": "2025-11-10T08:30:00Z", "end_time": "2025-11-10T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule mukaan englanninkieliselle satutunnille, jonka järjestää paikallinen Playschool Westend.", "sv": "Kom och delta i en engelsk sagostund tillsammans med ditt lokala daghem, Playschool Westend.", "en": "Come join us for an English Storytime morning with your local community daycare, Playschool westend." }, "info_url": null, "provider": { "fi": "Playschool Westend", "sv": "Playschool Westend", "en": "Playschool Westend" }, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Englanninkielinen satuhetki", "sv": "Story Time (på engelska)", "en": "Story Time" }, "description": { "fi": "<p>Tule mukaan englanninkieliselle satutunnille, jonka järjestää paikallinen Playschool Westend.</p><p>Keskiviikkona 10.11. klo 10:30.</p><p>Nähdään!</p>", "sv": "<p>Kom och delta i en engelsk sagostund tillsammans med ditt lokala daghem, Playschool Westend, onsdagen den 10. November kl. 10.30.</p>", "en": "<p>Come join us for an English Storytime morning with your local community daycare, Playschool westend.</p><p>Wednesday 10th November 10:30am.</p><p>See you all there!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfqsavoy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfq7ubku", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "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:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "telephone": { "fi": "+358 9 8165 7723" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:p2149", "has_user_editable_resources": false, "alt_labels": [ "opastaminen", "opastukset", "vägledning" ], "created_time": "2023-08-16T05:13:22.316826Z", "last_modified_time": "2023-08-16T05:13:22.316842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3818, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opastus", "sv": "guidning", "en": "guidance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2433", "has_user_editable_resources": false, "alt_labels": [ "ikä-ihmiset", "ikäihmiset", "gamlingar", "elderly", "old people", "older adults", "senior citizens", "iäkkäät", "seniorit", "vanhukset", "gamla", "seniorer", "äldre människor", "äldre personer", "åldringar" ], "created_time": "2023-08-16T05:17:43.642288Z", "last_modified_time": "2023-08-16T05:17:43.642316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 19274, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ikääntyneet", "sv": "äldre", "en": "older people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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": 7188, "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:koha", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-11-06T08:25:11.859863Z", "last_modified_time": "2025-11-06T08:25:11.859882Z", "date_published": "2025-11-06T08:25:00Z", "start_time": "2025-11-13T11:00:00Z", "end_time": "2025-11-13T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Digitukea ja tietoa Ison Omenan stagella!", "sv": "Digistöd och information på scenen stage i Iso Omena!", "en": "Digital support and information at Iso Omena library stage!" }, "info_url": null, "provider": null, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Digitukimessut", "sv": "Digistödmässan ", "en": "Digital Support Fair" }, "description": { "fi": "<p>Tule kuuntelemaan esityksiä, kiertelemään messupöytiä - ja juomaan kahvit!</p><p>Esityksissä kuulet ajankohtaisia asioita digimaailmasta. Messupöydissä esittelemme tahoja, joista saa apua oman digilaitteen sekä verkosta löytyvien palveluiden käyttöön.</p><p>Ohjelma:</p><p><br></p><p>Klo 13 Tervetuloa Digitukimessuille - kerromme keitä on mukana ja mitä ohjelmassa</p><p>Klo 13.15 Puheenvuoro: Digi ensin - Viranomaisviestit sähköisinä – Minna Piirainen (johtava asiantuntija, Digituen toimintamalli, Digi- ja väestötietovirasto DVV)</p><p>Klo 14 Tutustu messupöytiin ja kahvittele! (60 min)</p><p>Klo 15–15.50 Keskustelu: Kuinka eri-ikäiset ihmiset hyödyntävät tekoälyä arjessa </p><p>Klo 16 Tilaisuus päättyy</p>", "sv": "<p>På mässan kan du bekanta dig med olika aktörer som erbjuder digistöd. Kom och lyssna på presentationerna, bekanta dig med utställarna vid mässborden – och ta en kopp kaffe!</p><p>Presentationerna hålls på finska, men du kan fråga på svenska och vid mässborden finns svenskspråkiga på plats: Enter ry, Espo info, HyTe ry:s VESA-verksamhet och LUVN - Västra Nylands välfärdsområde.</p>", "en": "<p>Have a cup of coffee and learn about support and guidance in digital services on our stalls!</p><p>Presentations are in Finnish, but you can speak English with us:</p><p><br></p><ul><li>Espoo info</li><li>Hello Espoo info</li><li>Espoon Mokulat, Espoon Monikulttuuriset lapset ja nuoret ry (Multicultural Children and Youth of Espoo)</li><li>Western Uusimaa Wellbeing Services County</li></ul>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfq7ubku/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999854", "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" }, "street_address": { "fi": "Eläintarhantie 5", "sv": "Djurgårdsvägen 5", "en": "Eläintarhantie 5" }, "telephone": { "fi": "+358 9 394 022" }, "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, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?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": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?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/lets-play-business-helsingin-kaupunginteatteri-19999854/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999854/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999854/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_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/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:37.415059Z", "last_modified_time": "2025-11-06T01:15:14.472789Z", "date_published": null, "start_time": "2025-11-05T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider_contact_info": null, "name": { "en": "Let'S Play Business" }, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999854/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19913669", "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" }, "street_address": { "fi": "Ratamestarinkatu 5", "sv": "Banmästargatan 5" }, "telephone": { "fi": "+358 9 394 01" }, "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, "@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-19913669/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-kuka-kaappasi-auringon-helsingin-kaupunginteatteri-19913669/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/helsingin-kaupunginteatteri-kuka-kaappasi-auringon-helsingin-kaupunginteatteri-19913669/?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:58.377932Z", "last_modified_time": "2025-11-06T01:15:14.341515Z", "date_published": null, "start_time": "2025-11-05T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mauri Kunnas – Liila Jokelin – Lauri Schreck KUKA KAAPPASI AURINGON Väinölän taivaalla aurinko paistaa kultaisena." }, "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" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "location_extra_info": { "fi": "Studio Pasila" }, "provider_contact_info": null, "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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19913669/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmqkprl3a", "has_user_editable_resources": false, "location": { "id": "tprek:15395", "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:16.199535Z", "last_modified_time": "2024-04-09T05:09:28.197140Z", "custom_data": null, "email": "kirjasto.omena@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02230", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1939, "image": 7942, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.740192, 60.160072 ] }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "street_address": { "fi": "Suomenlahdentie 1", "sv": "Finnviksvägen 1", "en": "Suomenlahdentie 1" }, "telephone": { "fi": "+358 9 8165 7723" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84834" }, "name": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omena bibliotek", "en": "Iso Omena Library" }, "description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66by", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.052436Z", "last_modified_time": "2023-12-13T11:20:12.052454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1532, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Matinkylä", "sv": "Mattby", "en": "Matinkylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66mq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.137750Z", "last_modified_time": "2023-12-13T11:20:12.137771Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3078, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Finnoo", "sv": "Finno", "en": "Finnoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66qa", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.165590Z", "last_modified_time": "2023-12-13T11:20:12.165607Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 693, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Suvisaaristo", "sv": "Sommaröarna", "en": "Suvisaaristo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ru", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.179708Z", "last_modified_time": "2023-12-13T11:20:12.179727Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1100, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Olari", "sv": "Olars", "en": "Olari" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz675q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.530825Z", "last_modified_time": "2023-12-13T11:20:12.530842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 889, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Niittykumpu", "sv": "Ängskulla", "en": "Niittykumpu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.364884Z", "last_modified_time": "2023-12-13T11:20:12.364908Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2667, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaitaa", "sv": "Kaitans", "en": "Kaitaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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": 7188, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkprmwm/?format=api" }, "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": [], "images": [ { "id": 1490580, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-01T11:58:00.335560Z", "last_modified_time": "2025-09-01T11:58:00.335654Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c5e988d7-f94d-455c-adef-7acfbecae55d.png", "name": "", "cropping": "16,0,241,226", "photographer_name": "", "alt_text": "Taustalla epätarkka rivistö kirjoja. Etualalla Omppu open micin logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490580/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-01T12:06:38.045666Z", "last_modified_time": "2025-11-05T17:54:52.232688Z", "date_published": null, "start_time": "2025-11-20T15:30:00Z", "end_time": "2025-11-20T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lavarunoja", "sv": "scendikter", "en": "Spoken word poetry" }, "info_url": null, "provider": { "fi": "Espoon kirjailijat ry", "sv": "Espoon kirjailijat ry", "en": "Espoon kirjailijat ry" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider_contact_info": null, "name": { "fi": "Omppu Open mic - Runostage", "sv": "Omppu Open mic - Dikt Stage", "en": "Omppu Open mic - Poem Stage" }, "description": { "fi": "<p>Omppu Open Mic Runostage on lavarunoklubi, jossa pääsee esittämään omia tekstejä kannustavan yleisön edessä. Klubi järjestetään kerran kuussa. (esitykset max 5min)</p><p>Seremoniamestarina toimii Sanna Vaara eli Räppäri Vaara ja jokaiselle illalle on myös valittu esirunoilija.</p><p>25.9. Mikko Räty</p><p>20.11. Tiinaliisa Multamäki.</p><p>18.12. Johanna Venho</p>", "sv": "<p>Omppu Open Mic Dikt Stage, är en scenpoesiklubb där du kan framföra dina egna texter inför en uppmuntrande publik. Klubben hålls en gång i månaden. (Framträdanden max 5 minuter)</p><p>Ceremonimästare är Sanna Vaara, även känd som Räppäri Vaara, och varje kväll har en utvald förpoet.</p><p>25 september: Mikko Räty</p><p>20 november: Tiinaliisa Multamäki.</p><p>18 december: Johanna Venho</p>", "en": "<p>Omppu Open Mic Poem Stage is a spoken word club where you can perform your own texts in front of a supportive audience. The club is held once a month. (Performances max 5 minutes)</p><p>The master of ceremonies is Sanna Vaara, also known as Räppäri Vaara, and each evening features a selected opening poet.</p><p>September 25: Mikko Räty</p><p>November 20: Tiinaliisa Multamäki.</p><p>December 18: Johanna Venho</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkprl3a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfkdhhfu", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-05T16:22:44.733437Z", "last_modified_time": "2025-11-05T16:22:44.733455Z", "date_published": null, "start_time": "2025-11-16T10:00:00Z", "end_time": "2025-11-16T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": " Sukuseurojen keskusliitto ja Sukuviesti-lehti järjestävät kaikille avoimen tapahtuman", "sv": "Centralföreningen för familjeföreningar och tidningen Sukuviesti anordnar ett evenemang som är öppet för alla.", "en": "The Central Association of Family Societies and Sukuviesti magazine are organizing an event that is open to everyone." }, "info_url": null, "provider": { "fi": "Sukuseurojen keskusliitto ja Sukuviesti-lehti " }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider_contact_info": null, "name": { "fi": "Sukulaisten jäljillä-tapahtuma ", "sv": "Evenemanget ”På jakt efter släktingar” ", "en": "On the Trail of Relatives event " }, "description": { "fi": "<p> </p><p> Sukuseurojen keskusliitto ja Sukuviesti-lehti järjestävät 16.11.25 kaikille avoimen tapahtuman</p><p> Espoon Leppävaaran Sellon kirjaston kansalaistorilla.</p><p> Leppävaarankatu 9 02600 Espoo </p><p> </p><p> Ohjelma:</p><p> -Sukulehtikilpailun palkitsemiset</p><p> -Suvut yhteisönä, Kaisa Leena Välipirtti, Sukuseurojen keskusliiton varapuheenjohtaja</p><p> -Suomalaiset heimot, Teppo Ylitalo, toiminnanjohtaja, Suomen Kotiseutuliitto</p><p> -Sukututkimuksen historia, Kari-Matti Piilahti, toiminnanjohtaja Suomen Sukuhistoriallinen yhdistys</p><p> -Digitalisaation ja tekoälyn mahdollisuuksia sukututkijalle, Tomi Ahoranta, Suomen Sukututkimusseuran varapuheenjohtaja</p><p> -Tilaisuuden päätös, Teuvo Parviainen, Sukuseurojen keskusliitto</p><p> Kello 15.30 Sukuseurojen keskusliiton sääntömääräinen syyskokous kirjaston Akseli-salissa. Ilmoittautumiset kokoukseen toimisto@suvut.fi. </p><p> </p><p> Lämpimästi tervetuloa!</p><p> Lisätietoja:</p><p> Eine Kuismin</p><p> SSK</p><p> eine.espoo@gmail.com</p><p> 0400 483 829</p><p> </p><p> </p>", "sv": "<p>Centralföreningen för familjeföreningar och tidningen Sukuviesti anordnar ett evenemang som är öppet för alla. Evengeman är på svenska.</p>", "en": "<p>The Central Association of Family Societies and Sukuviesti magazine are organizing an event that is open to everyone. Event is in Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfkdhhfu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfjweu7a", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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: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: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": 7188, "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": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-05T15:44:51.253810Z", "last_modified_time": "2025-11-05T15:44:51.254023Z", "date_published": null, "start_time": "2025-11-29T09:30:00Z", "end_time": "2025-11-29T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Musiikkikoulu Demon syksyisessä matineapäivässä kuullaan piano- ja laulu-oppilaiden valmistelemia esityksiä. ", "sv": "Demo Music Skolan's studentkonserter", "en": "Demo Music School Student Concerts " }, "info_url": null, "provider": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider_contact_info": null, "name": { "fi": "Musiikkikoulu Demon oppilaskonsertit ", "sv": "Demo Music Skolan's studentkonserter", "en": "Demo Music School Student Concerts " }, "description": { "fi": "<p>Musiikkikoulu Demon syksyisessä matineapäivässä kuullaan piano- ja laulu-oppilaiden valmistelemia esityksiä. Matineat alkavat klo 11.30, klo 12.30, klo 14, klo 15 sekä klo 16.30 ja kestävät noin 45 min. Tervetuloa kuuntelemaan! </p><p><br></p><p>Musiikkikoulu Demo tarjoaa opetusta kaikenikäisille. https://musiikkikouludemo.fi/ </p>", "sv": "<p>Demo's höstmatinéer bjuder på uppträdanden av piano- och sångstudenter. Matinéerna börjar kl. 11.30, 12.30, 14.00, 15.00 och 16.30 och varar i cirka 45 minuter. Kom och lyssna! </p>", "en": "<p>The Demo Music School's autumn matinee day features performances prepared by piano and singing students. The matinees begin at 11:30 a.m., 12:30 p.m., 2:00 p.m., 3:00 p.m., and 4:30 p.m. and last approximately 45 minutes. Come and listen! </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfjweu7a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22hj4i", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hkju/?format=api" }, "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": [], "images": [ { "id": 1490155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T11:41:30.116405Z", "last_modified_time": "2025-07-09T11:41:30.116419Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png", "name": "", "cropping": "0,106,752,859", "photographer_name": "", "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-30T08:04:57.427325Z", "last_modified_time": "2025-11-05T15:24:07.727314Z", "date_published": null, "start_time": "2025-11-12T16:00:00Z", "end_time": "2025-11-12T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.", "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning", "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing." }, "info_url": null, "provider": null, "location_extra_info": { "fi": "Aula" }, "provider_contact_info": null, "name": { "fi": "Lukineuvontaa Sellon kirjastossa", "sv": "Läsrådgivning på biblioteket: Sello", "en": "Reading guidance at the library: Sello" }, "description": { "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa! </p>", "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>", "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hj4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22hjoi", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hkju/?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": 1490155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T11:41:30.116405Z", "last_modified_time": "2025-07-09T11:41:30.116419Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png", "name": "", "cropping": "0,106,752,859", "photographer_name": "", "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-30T08:04:57.536047Z", "last_modified_time": "2025-11-05T15:24:07.659897Z", "date_published": null, "start_time": "2025-12-04T15:00:00Z", "end_time": "2025-12-04T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.", "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning", "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing." }, "info_url": null, "provider": null, "location_extra_info": { "fi": "Aula" }, "provider_contact_info": null, "name": { "fi": "Lukineuvontaa Sellon kirjastossa", "sv": "Läsrådgivning på biblioteket: Sello", "en": "Reading guidance at the library: Sello" }, "description": { "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa! </p>", "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>", "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hjoi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22hkju", "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" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "telephone": { "fi": "+358 9 8165 7603" }, "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, "@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:p11406", "has_user_editable_resources": false, "alt_labels": [ "lukutekniikka", "lästeknik", "läsande" ], "created_time": "2023-08-16T05:19:26.950628Z", "last_modified_time": "2023-08-16T05:19:26.950647Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2295, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lukeminen", "sv": "läsning", "en": "reading" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "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:agmk22hjoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hj4i/?format=api" } ], "images": [ { "id": 1490155, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T11:41:30.116405Z", "last_modified_time": "2025-07-09T11:41:30.116419Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/19fca3ff-ca17-4b98-8829-2e515146efcf.png", "name": "", "cropping": "0,106,752,859", "photographer_name": "", "alt_text": "Musta välkkyvä lampun polttimo - logo, jossa onnellinen naama. Vihreällä teksti HERO, helsingin seudun erilaiset oppijat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490155/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-30T08:04:56.878934Z", "last_modified_time": "2025-11-05T15:24:07.071857Z", "date_published": null, "start_time": "2025-11-12T16:00:00Z", "end_time": "2025-12-04T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä.", "sv": "Vid rådgivningen får du information om lässvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivning", "en": "At the guidance service, you can get information about reading difficulties, how to identify them, and various tools that support reading and writing." }, "info_url": null, "provider": null, "location_extra_info": { "fi": "Aula" }, "provider_contact_info": null, "name": { "fi": "Lukineuvontaa Sellon kirjastossa", "sv": "Läsrådgivning på biblioteket: Sello", "en": "Reading guidance at the library: Sello" }, "description": { "fi": "<p>Tule Helsingin seudun erilaiset oppijat ry:n (HEROn) lukineuvontaan!</p><p><br></p><p>Haluatko tietoa lukivaikeuksista ja apuvälineistä, jotka helpottavat lukemista ja kirjoittamista? HERO:n maksuttomassa lukineuvonnassa saat asiantuntevaa ohjausta erityisopetuksen ammattilaisilta.</p><p>Löydät HEROn kirjaston aulatilasta tai muusta sille osoitetusta paikasta – etsi vihreä roll-up!</p><p>Tule keskustelemaan ja kuulemaan lisää oppimisesta sekä HERO:n toiminnasta. Nähdään kirjastossa! </p>", "sv": "<p>Dessutom får du bekanta dig med olika inlärningsspel som kan laddas ner till surfplatta eller dator.</p><p>Kom och diskutera eller lyssna på information om lärande samt bekanta dig med verksamheten vid Helsingforsregionens förening för olika inlärare (HERO).</p><p>Läsrådgivningen ges av våra specialpedagogiska experter och är kostnadsfri.</p>", "en": "<p>You can also explore various educational games that can be downloaded to a tablet or computer.</p><p>Come to chat or hear more about learning, and get to know the activities of the Helsinki Metropolitan Area Association for People with Learning Difficulties (HERO).</p><p>Our special education experts provide the reading guidance, and it is free of charge.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22hkju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfi24wim", "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" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "telephone": { "fi": "+358 50 428 9392" }, "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, "@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": "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: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": 7188, "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n6pm/?format=api" }, "event_status": "EventCancelled", "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:KOTO", "sub_events": [], "images": [ { "id": 151294, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-22T11:46:30.237501Z", "last_modified_time": "2024-05-22T11:46:30.237522Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/biisity%C3%B6paja.jpg", "name": "", "cropping": "517,0,2583,2066", "photographer_name": "", "alt_text": "nuori tekee omaa musiikkia. Kitara, tietokone ja piano", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-07T11:12:07.251166Z", "last_modified_time": "2025-11-05T13:22:21.755835Z", "date_published": null, "start_time": "2025-11-05T15:00:00Z", "end_time": "2025-11-05T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Osallistuminen on maksutonta." }, "info_url": null, "provider": null, "location_extra_info": { "fi": "nuortentila" }, "provider_contact_info": null, "name": { "fi": "PERUUTETTU Biisityöpaja nuorille" }, "description": { "fi": "<p>PERUUTETTU 5.11</p><p>Oletko aina halunnut tehdä oman kappaleen tai biitin, mutta et tiedä miten lähteä liikkeelle? Nyt siihen on oiva apu, nimittäin Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Teemme myös sanoituksia valmistuneisiin biitteihin. Tapahtumaan ei ole ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p><br></p><p>Biisipaja järjestetään syksyn aikana seitsemän kertaa joka toinen keskiviikko klo 17.00-18.00</p><p>10.9, 24.9, 8.10, 22.10, 5.11, 19.11 ja 3.12</p><p><br></p><p>#musiikki #biisi #kappale #työpaja</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfi24wim/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:e76857f9-9d1b-4eb7-b047-02e51af29ccb", "has_user_editable_resources": false, "location": { "id": "tprek:20547", "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-15T08:16:11.157010Z", "last_modified_time": "2024-02-06T13:10:41.442228Z", "custom_data": null, "email": "myynti@paasitorni.fi", "contact_type": null, "address_region": null, "postal_code": "00530", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 2, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.947422, 60.178623 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Paasivuorenkatu 5 A", "sv": "Paasivuorigatan 5 A", "en": "Paasivuorenkatu 5 A" }, "telephone": { "fi": "+358 9 708 9611" }, "info_url": { "fi": "http://www.paasitorni.fi", "sv": "https://www.paasitorni.fi/en/", "en": "https://www.paasitorni.fi/en/" }, "name": { "fi": "Helsinki Congress Paasitorni", "sv": "Helsinki Congress Paasitorni", "en": "Helsinki Congress Paasitorni" }, "description": { "fi": "Helsinki Congress Paasitorni on 1900-luvun alkuvuosikymmeninä rakennettu, huolella entisöity ja uudisosilla täydentynyt kokous- ja kongressikeskus. Paasitornin täyden palvelun kokonaisuus tarjoaa inspiroivat ja mieliinpainuvat puitteet kokouksille, kongresseille, illallisille ja juhlatilaisuuksille - majoituksineen. Talossa on lähes 30 toimivaa, omailmeistä ja muunneltavaa tilaa 8-800 hengelle. Paasitornin toiminta on ISO 9001 -laatu- ja ISO 14001 -ympäristösertifioitua.", "sv": "Det historiska Helsinki Congress Paasitorni är en vackert restaurerad granitborg. Det finns ett trettiotal konferensrum för 8-800 personer med modern konferensteknik. Paasitorni fick kvalitetscertifikatet ISO 9001 redan hösten 1999 och ISO 14001 år 2012.", "en": "Helsinki Congress Paasitorni operates in a more than 100-year-old building which has been skillfully restored and extended. Full-service venue provides an inspirational and memorable setting for conferences, congresses, dinners and festivities - with accommodation. The building hosts almost 30 functional and distinctive rooms from 8 to 800 people. Helsinki Congress Paasitorni is ISO 9001 quality and ISO 14001 environmentally certified." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20547/?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: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:p2149", "has_user_editable_resources": false, "alt_labels": [ "opastaminen", "opastukset", "vägledning" ], "created_time": "2023-08-16T05:13:22.316826Z", "last_modified_time": "2023-08-16T05:13:22.316842Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3818, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opastus", "sv": "guidning", "en": "guidance" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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": 338, "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": 70, "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": 679, "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": 175, "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:p916", "has_user_editable_resources": false, "alt_labels": [ "motionering", "liikuntakäyttäytyminen", "liikkuminen (liikunta)", "motion (gymnastik)", "motion (idrott)", "motionsbeteende" ], "created_time": "2023-08-16T05:19:42.381880Z", "last_modified_time": "2023-08-16T05:19:42.381897Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 30442, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "liikunta", "sv": "motion", "en": "physical training" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?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": "5", "sv": "4", "en": "4", "ru": "4", "zh_hans": "4", "ar": "4" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "sv": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634" }, "description": { "fi": "Hintatietojen lisätiedot - Suomeksi", "sv": "Hintatietojen lisätiedot", "en": "Hintatietojen lisätiedot", "ru": "Hintatietojen lisätiedot", "zh_hans": "Hintatietojen lisätiedot", "ar": "Hintatietojen lisätiedot" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1491309, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-05T13:14:16.443975Z", "last_modified_time": "2025-11-05T13:14:16.443990Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491309/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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:p2149/?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:p916/?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-31T08:04:32.467693Z", "last_modified_time": "2025-11-05T13:14:17.360428Z", "date_published": "2025-10-31T08:03:24Z", "start_time": "2025-12-24T06:00:00Z", "end_time": "2025-12-24T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 15, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 50, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-10-31T08:00:00+02:00", "enrolment_end_time": "2025-12-22T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "31.10.2025 - TLDG\nKielivalinnan muuttaminen ei valu Linked Eventsiin", "sv": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2" }, "info_url": { "sv": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "en": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ru": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "zh_hans": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634", "ar": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3801136634" }, "provider": { "fi": "ABC Yritys Oy", "sv": "ABC Yritys Oy", "en": "ABC Yritys Oy", "ru": "ABC Yritys Oy", "zh_hans": "ABC Yritys Oy", "ar": "ABC Yritys Oy" }, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi", "sv": "Tapahtumapaikan lisätiedot - Ruotsi", "en": "Tapahtumapaikan lisätiedot - Englanti", "ru": "Tapahtumapaikan lisätiedot - Venäjä", "zh_hans": "Tapahtumapaikan lisätiedot - Kiina", "ar": "Tapahtumapaikan lisätiedot arabiaksi" }, "provider_contact_info": null, "name": { "fi": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "sv": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "en": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ru": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "zh_hans": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2", "ar": "1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2" }, "description": { "fi": "<div><p>31.10.2025 - TLDG<br>Kielivalinnan muuttaminen ei valu Linked Eventsiin<br>- SWE Otsikko ja kuvaukset lisätty.<br>- SWE Otsikko ja kuvaukset poistettu.</p><p>- syöttökielet Ruotsi poistettu +++++</p><p>-Syöttökielet poistettu<br>-Lisätty SK kiina,Arabia,Englanti,Venäjä ja Ruotsi</p></div>", "sv": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "en": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2+++</p></div>", "ru": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "zh_hans": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>", "ar": "<div><p>1502 - Kielivalinnan muuttaminen ei valu Linked Eventsiin V2</p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:e76857f9-9d1b-4eb7-b047-02e51af29ccb/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67140", "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": 981, "image": 414656, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.07989, 60.212097 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Turunlinnantie 1", "sv": "Åbohusvägen 1", "en": "Turunlinnantie 1" }, "telephone": { "fi": "+358 40 160 3755" }, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:32", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.496484Z", "last_modified_time": "2024-02-06T13:19:13.818300Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 796, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:350", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.556582Z", "last_modified_time": "2024-02-06T13:19:15.225361Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 431, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Tanssi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:44", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.615362Z", "last_modified_time": "2024-02-06T13:19:14.019369Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 986, "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": 5995, "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": 4850, "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": 5054, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:758", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2025-01-16T11:10:18.586374Z", "last_modified_time": "2025-01-16T11:10:18.586416Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 146, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "valtuusto150" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "info_url": { "fi": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "sv": "https://www.lippu.fi/en/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/en/artist/kinetic-orchestra/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491040, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T13:13:30.529763Z", "last_modified_time": "2025-10-08T13:13:30.529775Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773712.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491040/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-08T13:13:30.432223Z", "last_modified_time": "2025-11-05T13:12:07.022592Z", "date_published": null, "start_time": "2025-11-30T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.", "sv": "Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.", "en": "Working Class Heroes is a story of funny guys who both work and create art with their bodies." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/ABA8603729E0E1A2AF911C5DE6220191/Kinetic_Orchestra_Working_Class_Heroes_", "sv": "http://www.stoa.fi/sv/evenemang/event/ABA8603729E0E1A2AF911C5DE6220191/Kinetic_Orchestra_Working_Class_Heroes_", "en": "http://www.stoa.fi/en/events/event/ABA8603729E0E1A2AF911C5DE6220191/Kinetic_Orchestra_Working_Class_Heroes_" }, "provider": null, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Kinetic Orchestra: Working Class Heroes", "sv": "Kinetic Orchestra: Working Class Heroes", "en": "Kinetic Orchestra: Working Class Heroes" }, "description": { "fi": "<p>Working Class Heroes on tarina hauskoista tyypeistä, jotka tekevät työtä ja taidetta kehollaan.</p><p>Teoksen hahmot ovat fiktiivisiä, mutta heidän kokemuksensa ulkopuolisuudesta ja intohimonsa kyseenalaistamisesta voivat tuntua tutuilta monelle, joka on omistautunut jollekin fyysiselle tekemiselle. <br> <br>Tanssijat: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin sekä vaihtuvassa roolissa Anni Koivusalo, Malla Aaltonen ja Riikka Lyra<br>Konsepti: Jarkko Mandelin<br>Koreografia: Tanssijat ja Jarkko Mandelin<br>Äänisuunnittelu ja sävellys: Janne Hast<br>Pukusuunnittelu: Maria Siren<br>Valosuunnittelu: Niila Rantala<br>Tuotanto: Kinetic Orchestra</p><p>Genre: tanssi<br>Kesto: n. 45 min.<br>Kieli: sanaton</p><p><b>Valtuusto 150 v-etu</b> <br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille! <br> <br>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">TÄSTÄ</a></u></p>", "sv": "<p>Working Class Heroes är en berättelse om roliga typer som arbetar och skapar konst med sin kropp.</p><p>Figurerna i verket är fiktiva men deras erfarenheter om utanförskap och sin passion för ifrågasättande kan kännas bekanta för många som engagerat sig åt någon fysisk syssla. <br> <br>Dansare: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin samt i växlande roll Anni Koivusalo, Malla Aaltonen och Riikka Lyra<br>Koncept: Jarkko Mandelin<br>Koreografi: dansare och Jarkko Mandelin<br>Ljudplanering och tonsättning: Janne Hast<br>Kostymdesign: Maria Siren<br>Ljusplanering: Niila Rantala<br>Produktion: Kinetic Orchestra</p><p><b>Fullmäktige 150 år-fördel</b> <br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HÄR</a></u></p>", "en": "<p>Working Class Heroes is a story of funny guys who both work and create art with their bodies.</p><p>The characters in the work are fictional, but their experiences of being outsiders and questioning their passions may seem familiar to many who are dedicated to doing something physical. <br> <br>Dancers: Sanni Giordani, Oskari Turpeinen, Hugo Sellam, Viktoria Radin, Antoine Bouhier, Oiva Mandelin. In alternating roles: Anni Koivusalo, Malla Aaltonen and Riikka Lyra<br>Concept: Jarkko Mandelin<br>Choreography: Dancers and Jarkko Mandelin<br>Sound design and composition: Janne Hast<br>Costume design: Maria Siren<br>Lighting design: Niila Rantala<br>Production: Kinetic Orchestra</p><p><b>Council 150 years</b> <br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/kinetic-orchestra-helsingin-kaupunki-nuorisolippu-stoa-20811519/?affiliate=FSF\">HERE</a></u></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67140/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66081", "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": 1361, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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": 1349, "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": 5995, "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": 4850, "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": 5054, "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": 1117, "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:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": ": 22,80 € / 17,80 €", "sv": ": 22,80 € / 17,80 €", "en": ": 22,80 € / 17,80 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kumpulan-kuoron-30-vuotisjuhlakonsertti-malmitalo-20208332/", "sv": "https://www.lippu.fi/event/kumpulan-kuoron-30-vuotisjuhlakonsertti-malmitalo-20208332/", "en": "https://www.lippu.fi/event/kumpulan-kuoron-30-vuotisjuhlakonsertti-malmitalo-20208332/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490659, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T13:14:22.626815Z", "last_modified_time": "2025-09-08T13:14:22.626832Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771434.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490659/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-08T13:14:22.473613Z", "last_modified_time": "2025-11-05T13:12:04.092165Z", "date_published": null, "start_time": "2025-11-15T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa juhlistamaan Kumpulan kuoron 30-vuotista taivalta!", "sv": "Välkommen att fira Kumpulakörens 30-årsjubileum!", "en": "Join us in celebrating the 30th anniversary of Kumpula Choir!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/38D0FA49C0E895B833FECB139B8A15BC/Kumpulasta_kajahtaa_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/38D0FA49C0E895B833FECB139B8A15BC/Kumpulasta_kajahtaa_", "en": "http://www.malmitalo.fi/en/events/event/38D0FA49C0E895B833FECB139B8A15BC/The_Sound_of_Kumpula_" }, "provider": null, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Kumpulasta kajahtaa! – Kumpulan kuoron 30-vuotisjuhlakonsertti", "sv": "Kumpulasta kajahtaa! – Kumpulakörens 30-årsjubileumskonsert", "en": "The Sound of Kumpula! – Kumpula Choir's 30th Anniversary Concert" }, "description": { "fi": "<p>Tervetuloa juhlistamaan Kumpulan kuoron 30-vuotista taivalta!</p><p>Konsertissa on mukana suosittuja lauluja kuoron 30-vuotisen historian ajalta ja myös uusia juhlavuotta varten tilattuja teoksia.<br>Kumpulan kuoro on vuonna 1995 perustettu sekakuoro, joka laulaa kuoromusiikkia monipuolisesti klassisesta rytmimusiikkiin. Kumpulan kuoron sointi on komea, ja siinä laulaa yli 50 laulajaa. Kuoro tavoittaa konserteillaan noin tuhat kuulijaa vuosittain. Kuoroa on johtanut syksystä 2024 lähtien director cantus Arto Joutsimäki.</p><p>Kesto 1 t 30 min, konsertissa on väliaika</p>", "sv": "<p>Välkommen att fira Kumpulakörens 30-årsjubileum!</p><p>Konserten omfattar populära sånger från körens 30-åriga historia och även verk som beställts för jubileumsåret.<br>Kumpulakören är en blandad kör som grundades 1995 och sjunger mångsidig körmusik med klassisk till rytmisk musik. Kumpulakören har ett fantastiskt sound med mer än 50 sångare. Kören når ut till cirka tusen lyssnare varje år i sina konserter. Sedan hösten 2024 leds kören av director cantus Arto Joutsimäki.</p><p>Längd 1 timme 30 minuter, med paus</p>", "en": "<p>Join us in celebrating the 30th anniversary of Kumpula Choir!</p><p>The concert features popular songs from the choir's 30-year history, as well as new works commissioned for the anniversary.<br>Kumpula Choir is a mixed choir formed in 1995, singing a variety of choral music from classical to rhythm music. With over 50 singers performing, the sound of the choir is magnificent. The choir reaches around a thousand listeners every year through its concerts. Since autumn 2024, the choir has been conducted by director cantus Arto Joutsimäki.</p><p>Duration 1 hour 30 min, intermission</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66081/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66080", "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": 1361, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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": 1349, "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": 5995, "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": 4850, "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": 5054, "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": 1117, "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:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": "22,80 € / 17,80 €", "sv": "22,80 € / 17,80 €", "en": "22,80 € / 17,80 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kumpulan-kuoron-30-vuotisjuhlakonsertti-malmitalo-20208324/", "sv": "https://www.lippu.fi/event/kumpulan-kuoron-30-vuotisjuhlakonsertti-malmitalo-20208324/", "en": "https://www.lippu.fi/event/kumpulan-kuoron-30-vuotisjuhlakonsertti-malmitalo-20208324/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490658, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-08T13:14:22.116848Z", "last_modified_time": "2025-09-08T13:14:22.116865Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771433.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490658/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-08T13:14:21.930695Z", "last_modified_time": "2025-11-05T13:12:03.922314Z", "date_published": null, "start_time": "2025-11-15T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa juhlistamaan Kumpulan kuoron 30-vuotista taivalta!", "sv": "Välkommen att fira Kumpulakörens 30-årsjubileum!", "en": "Join us in celebrating the 30th anniversary of Kumpula Choir!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/460562FFF07BA3E28F0C9B866ABB67DF/Kumpulasta_kajahtaa_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/460562FFF07BA3E28F0C9B866ABB67DF/Kumpulasta_kajahtaa_", "en": "http://www.malmitalo.fi/en/events/event/460562FFF07BA3E28F0C9B866ABB67DF/The_Sound_of_Kumpula_" }, "provider": null, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Kumpulasta kajahtaa! – Kumpulan kuoron 30-vuotisjuhlakonsertti", "sv": "Kumpulasta kajahtaa! – Kumpulakörens 30-årsjubileumskonsert", "en": "The Sound of Kumpula! – Kumpula Choir's 30th Anniversary Concert" }, "description": { "fi": "<p>Tervetuloa juhlistamaan Kumpulan kuoron 30-vuotista taivalta!</p><p>Tervetuloa juhlistamaan Kumpulan kuoron 30-vuotista taivalta!<br>Konsertissa on mukana suosittuja lauluja kuoron 30-vuotisen historian ajalta ja myös uusia juhlavuotta varten tilattuja teoksia.<br>Kumpulan kuoro on vuonna 1995 perustettu sekakuoro, joka laulaa kuoromusiikkia monipuolisesti klassisesta rytmimusiikkiin. Kumpulan kuoron sointi on komea, ja siinä laulaa yli 50 laulajaa. Kuoro tavoittaa konserteillaan noin tuhat kuulijaa vuosittain. Kuoroa on johtanut syksystä 2024 lähtien director cantus Arto Joutsimäki.</p><p>Kesto 1 t 30 min, konsertissa on väliaika</p>", "sv": "<p>Välkommen att fira Kumpulakörens 30-årsjubileum!</p><p>Konserten omfattar populära sånger från körens 30-åriga historia och även verk som beställts för jubileumsåret.<br>Kumpulakören är en blandad kör som grundades 1995 och sjunger mångsidig körmusik med klassisk till rytmisk musik. Kumpulakören har ett fantastiskt sound med mer än 50 sångare. Kören når ut till cirka tusen lyssnare varje år i sina konserter. Sedan hösten 2024 leds kören av director cantus Arto Joutsimäki.</p><p>Längd 1 timme 30 minuter, med paus</p>", "en": "<p>Join us in celebrating the 30th anniversary of Kumpula Choir!</p><p>The concert features popular songs from the choir's 30-year history, as well as new works commissioned for the anniversary.<br>Kumpula Choir is a mixed choir formed in 1995, singing a variety of choral music from classical to rhythm music. With over 50 singers performing, the sound of the choir is magnificent. The choir reaches around a thousand listeners every year through its concerts. Since autumn 2024, the choir has been conducted by director cantus Arto Joutsimäki.</p><p>Duration 1 hour 30 min, intermission</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66080/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66413", "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": 1361, "image": 414658, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.01497, 60.250507 ] }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "street_address": { "fi": "Ala-Malmin tori 1", "sv": "Nedre Malms torg 1", "en": "Ala-Malmin tori 1" }, "telephone": { "fi": "+358 9 310 80831" }, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?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": 1321, "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:31", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.481619Z", "last_modified_time": "2024-02-06T13:19:13.796408Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1956, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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": 1349, "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": 5995, "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": 4850, "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": 5054, "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": 1117, "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:p29865", "has_user_editable_resources": false, "alt_labels": [ "meksikolainen son", "son (meksikolainen populaarimusiikki)", "son-musiikki", "son (mexikansk musik)", "son-musik" ], "created_time": "2023-08-16T05:14:06.089816Z", "last_modified_time": "2023-08-16T05:14:06.089833Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1409, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "son mexicano", "en": "son mexicano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": 13453, "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": 1170381, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T08:13:55.819406Z", "last_modified_time": "2025-07-03T08:13:55.819429Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774122.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170381/?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-07-03T08:13:55.726144Z", "last_modified_time": "2025-11-05T12:13:14.118007Z", "date_published": null, "start_time": "2025-11-29T08:00:00Z", "end_time": "2025-11-29T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jo perinteeksi muodostuneessa Malmitalon joulun perhepäivässä on luvassa paljon maksutonta ohjelmaa perheille: työpajoja, leffoja ja joulupukki!", "sv": "På julens familjedag i Malms kulturhus som redan blivit en tradition, utlovas många avgiftsfria program för familjer: verkstäder, filmer och jultomten!", "en": "The Malmitalo Christmas Family Day, which has already become a tradition, offers lots of free activities for families: workshops, films and Father Christmas!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5C45B4E6E31080EA273DCD1ACD964DBA/Joulun_perhepaiva", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5C45B4E6E31080EA273DCD1ACD964DBA/Julens_familjedag_", "en": "http://www.malmitalo.fi/en/events/event/5C45B4E6E31080EA273DCD1ACD964DBA/Christmas_Family_Day" }, "provider": null, "location_extra_info": null, "provider_contact_info": null, "name": { "fi": "Joulun perhepäivä", "sv": "Julens familjedag", "en": "Christmas Family Day" }, "description": { "fi": "<p>Jo perinteeksi muodostuneessa Malmitalon joulun perhepäivässä on luvassa paljon maksutonta ohjelmaa perheille: työpajoja, leffoja ja joulupukki!</p><p>On aika ottaa kevyt varaslähtö kohti joulun perherientoja ihastuttavan ja touhua täynnä olevan päivän myötä. Työpajoissa askarrellaan ja tehdään joulukortteja, ilmaisissa elokuvanäytöksissä puolestaan pääsee uppoutumaan Astrid Lindgrenin joulutarinoita -elokuvan maailmaan. Paikan päältä löydät tietenkin myös joulupukin.</p><p><b>Joulun perhepäivän aikataulu</b><br>klo 10–12 Joulun siivin -askartelupaja, parvi<br>klo 10-12 Joulupukki tavattavissa, aula<br>klo 11 Astrid Lindgrenin joulutarinoita (S) -elokuva, Pieni Sali<br>klo 11-13 Varustamo: Naavatonttu- ja peikkoaskartelua luonnon materiaaleista<br>klo 12–14 Malmin kirjasto joulukorttityöpaja, kirjasto<br>klo 13–15 Taito Etelä-Suomen jouluisa kädentaitopaja, parvi<br>klo 13–15 Joulupukki tavattavissa, aula<br>klo 14 Astrid Lindgrenin joulutarinoita (S) -elokuva, Pieni Sali</p><p>Vapaa pääsy!</p>", "sv": "<p>På julens familjedag i Malms kulturhus som redan blivit en tradition, utlovas många avgiftsfria program för familjer: verkstäder, filmer och jultomten!</p><p>Det är dags att göra en liten tjuvstart i julbestyren med den härliga dagen full av aktiviteter! I verkstäderna och gratis filmvisningar kan man fördjupa sig i Astrid Lindgrens film Jul med Astrid Lindgren. Mer information om verkstäderna och tidtabellerna för dagen kommer närmare julen.</p><p><b>Tidtabell</b><br>10:00–12:00 Med julens vingar pysselverkstad, Galleri<br>10:00–12:00 Träffa jultomten, Foajén<br>11:00 Astrid Lindgrens julberättelser (barntillåten), Kino Helios<br>11:00–13:00 Varustamo: Tomte och troll pyssel av naturmaterial<br>12:00–14:00 Malmi bibliotek julkortverkstad, Biblioteket<br>13:00–15:00 Taito Sydfinlands juliga hantverksverkstad, Galleri<br>13:00–15:00 Träffa jultomten, Foajén<br>14:00 Astrid Lindgrens julberättelser (barntillåten), Lilla salen<br>15:00 Mimmit: Puhuri julkonsert (biljetter 8 €), Malmisali</p><p>Fritt inträde!</p>", "en": "<p>The Malmitalo Christmas Family Day, which has already become a tradition, offers lots of free activities for families: workshops, films and Father Christmas!</p><p>Enjoy an early start to Christmas family fun with this delightful day full of activities. In the workshops, participants get to do crafts, while the free film screenings will immerse the audience in the world of the film Astrid Lindgren's Christmas.</p><p><b>Schedule</b><br>10:00–12:00 With the Wings of Christmas craft workshop, Balcony<br>10:00–12:00 Meet Santa in lobby<br>11:00 Astrid Lindgren’s Christmas Stories (U), Kino Helios<br>11:00–13:00 Varustamo: Elf and Troll Crafts from Natural Materials<br>12:00–14:00 Malmi Library Christmas card workshop, Library<br>13:00–15:00 Taito South Finland festive handicraft workshop, Balcony<br>13:00–15:00 Meet Santa in lobby<br>14:00 Astrid Lindgren’s Christmas Stories (U), Kino Helios</p><p>Free entry!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66413/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:d66087bb-2369-40a9-a73f-9bdccf7fd475", "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" }, "street_address": { "fi": "Veräjäpellonkatu 2-4", "sv": "Grindåkersgatan 2-4", "en": "Veräjäpellonkatu 2-4" }, "telephone": null, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:65018/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "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/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=1502_-_Kielivalinnan_muuttaminen_ei_valu_Linked_Eventsiin3998475885" }, "description": { "fi": "Hintatietojen lisätiedot - Suomeksi" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 803513, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-05-19T11:23:49.999056Z", "last_modified_time": "2025-05-19T11:23:49.999078Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaaja", "alt_text": "Kuvan ALT-Teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/803513/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" } ], "created_time": "2025-11-05T11:18:03.599227Z", "last_modified_time": "2025-11-05T11:18:03.599274Z", "date_published": "2025-10-31T07:21:04Z", "start_time": "2025-12-24T06:00:00Z", "end_time": "2025-12-24T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 15, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 50, "minimum_attendee_capacity": 1, "enrolment_start_time": "2025-10-31T08:00:00+02:00", "enrolment_end_time": "2025-12-22T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "31.10.2025 - TLDG\nKielivalinnan muuttaminen ei valu Linked Eventsiin" }, "info_url": null, "provider": { "fi": "ABC Yritys Oy" }, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi" }, "provider_contact_info": null, "name": { "fi": "1502 - Kielivalinnan muuttaminen ei valu Linked EventsiinHenrikin testi" }, "description": { "fi": "<div><p>31.10.2025 - TLDG<br>Kielivalinnan muuttaminen ei valu Linked Eventsiin<br>-syöttökielet Ruotsi poistettu<br>- Ruotsikielinen tapahtuman kuvaus poistettu.<br>- Lyhyt kuvaus ruotsiksi poistettu<br>- Ruotsinkielinen Otsikko poistettu</p><p>- Tapahtuman järjestäjä ruotsiksi</p><p>- Tapahtumapaikan lisätiedot - Ruotsi</p><p>- Hintatietojen kuvaus ruotsiksi</p><p>- Hinta - Ruotsiksi</p><p>- Linkki lipunmyyntiin tai ilmoittautumiseen ruotsiksi poistettu<br>- Kaikki SWE kentät täytetty</p></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:d66087bb-2369-40a9-a73f-9bdccf7fd475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }