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=841
{ "meta": { "count": 32755, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=842", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=840" }, "data": [ { "id": "espoo_le:agi6bjk2eu", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.407707Z", "last_modified_time": "2023-12-13T11:20:12.407727Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 143, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kera", "sv": "Kera", "en": "Kera" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2wy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-10T13:41:57.554744Z", "last_modified_time": "2024-04-26T10:56:54.101290Z", "date_published": null, "start_time": "2024-05-10T12:00:00Z", "end_time": "2024-05-10T13: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": "Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark.", "en": "In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft." }, "info_url": { "fi": "https://www.xroc.gg/koulut/", "sv": "https://www.xroc.gg/koulut/", "en": "https://www.xroc.gg/koulut/" }, "description": { "fi": "<p>Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otamme vastaan kaikki pelin tuovat haasteet yhdessä! Pelistä ei tarvitse olla aiempaa kokemusta, sillä paikalla on aina peliohjaaja, joka on aina valmiina auttamaan.</p><p>Harrastuksen kieli on suomi.</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Pääset ilmoittautumaan Lisätietoja-linkistä. </p><p>Harrastus jatkuu koko lukuvuoden ajan, ellei muuta mainita. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat. </p><p>Olethan yhteydessä harrastuksen järjestäjään, mikäli sinulla on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista Harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark med bara varandra som stöd. Tillsammans tar vi oss an alla utmaningar som spelet för med sig! Ingen tidigare erfarenhet av spelet behövs, eftersom det alltid finns en spelledare för att hjälpa till.</p><p>Huvudspråket för den här hobby är finska.</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmäla dig till gruppen via länk Övrig information. </p><p>Hobbyn fortsätter under hela läsåret, om inget annat nämns. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna. </p><p>Kontakta den som ordnar hobbyn om du har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo.<br></p>", "en": "<p>In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft with only each other for support. Together we'll take on all the challenges the game brings! No previous experience of the game is necessary, as there's always a game leader on hand to help.</p><p>This hobby is organised in Finnish.</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. You can register by choosing the Additional information link. </p><p>The hobby will continue throughout the school year, unless stated otherwise. The hobby is free-of-charge to the participants. The City of Espoo has insured the participants of hobby groups. </p><p>Please contact the organiser of the activity if you want to ask more about the activity.</p><p>Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "name": { "fi": "Minecraft Seikkailijat 3.-6.-luokkalaisille Entressessä", "sv": "Minecraft Äventyrare för åk 3-6 i Entresse", "en": "Minecraft Adventurers for 3rd-6th graders in Entresse" }, "provider_contact_info": null, "location_extra_info": { "fi": "Yhteystiedot: Harrastuskoordinaattori@XRoc.gg", "sv": "Kontaktinformation: Harrastuskoordinaattori@XRoc.gg", "en": "Contact details: Harrastuskoordinaattori@XRoc.gg" }, "provider": { "fi": "XRoc / Espoon harrastuspolku", "sv": "XRoc / Hobbystigen i Esbo", "en": "XRoc / Espoo Hobby Path" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2eu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:e780e4ae-4bb6-45ed-ab35-72fd893a4f61", "has_user_editable_resources": false, "location": { "id": "tprek:73020", "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:vallila", "municipality": "Helsinki", "name": { "fi": "Vallila", "sv": "Vallgård" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:vallila", "municipality": "Helsinki", "name": { "fi": "Vallila", "sv": "Vallgård" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vallila", "municipality": "Helsinki", "name": { "fi": "Vallila", "sv": "Vallgård" } } ], "created_time": "2023-08-22T06:09:55.188056Z", "last_modified_time": "2024-02-06T14:10:56.317398Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00510", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 18, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.955997, 60.194706 ] }, "telephone": null, "street_address": { "fi": "Mäkelänkatu 32", "sv": "Backasgatan 32", "en": "Mäkelänkatu 32" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.facebook.com/p/32-Rock-Bar-100063619234626/", "sv": "https://www.facebook.com/p/32-Rock-Bar-100063619234626/", "en": "https://www.facebook.com/p/32-Rock-Bar-100063619234626/" }, "description": { "fi": "32 Rock Bar on Mäkelänkadulla sijaitseva baari.", "sv": "32 Rock Bar är en bar som ligger på Backasgatan i Helsingfors.", "en": "32 Rock Bar is a bar located on Mäkelänkatu in Helsinki." }, "name": { "fi": "32 Rock Bar", "sv": "32 Rock Bar", "en": "32 Rock Bar" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:73020/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kuvatestaus_2_hw_2642966710021" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150853, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-26T10:51:53.001545Z", "last_modified_time": "2024-04-26T10:51:53.001562Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/9bb9c043-8dfc-ee11-a1ff-000d3ab363c5", "name": "a", "cropping": "", "photographer_name": "a", "alt_text": "a", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150853/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-04-26T10:51:55.827129Z", "last_modified_time": "2024-04-26T10:51:55.827147Z", "date_published": "2024-04-26T10:45:16Z", "start_time": "2024-04-28T12:54:00Z", "end_time": "2024-04-29T14:54:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-27T10:00:00+03:00", "enrolment_end_time": "2024-04-27T12:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "a" }, "info_url": null, "description": { "fi": "<div><div>a</div></div>" }, "name": { "fi": "Kuvatestaus 2 hw 26.4 pvtys" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "a" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e780e4ae-4bb6-45ed-ab35-72fd893a4f61/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2iu", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.407707Z", "last_modified_time": "2023-12-13T11:20:12.407727Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 143, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kera", "sv": "Kera", "en": "Kera" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2wy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-10T13:41:57.336688Z", "last_modified_time": "2024-04-26T10:50:02.235380Z", "date_published": null, "start_time": "2024-04-26T12:00:00Z", "end_time": "2024-04-26T13: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": "Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark.", "en": "In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft." }, "info_url": { "fi": "https://www.xroc.gg/koulut/", "sv": "https://www.xroc.gg/koulut/", "en": "https://www.xroc.gg/koulut/" }, "description": { "fi": "<p>Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otamme vastaan kaikki pelin tuovat haasteet yhdessä! Pelistä ei tarvitse olla aiempaa kokemusta, sillä paikalla on aina peliohjaaja, joka on aina valmiina auttamaan.</p><p>Harrastuksen kieli on suomi.</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Pääset ilmoittautumaan Lisätietoja-linkistä. </p><p>Harrastus jatkuu koko lukuvuoden ajan, ellei muuta mainita. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat. </p><p>Olethan yhteydessä harrastuksen järjestäjään, mikäli sinulla on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista Harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark med bara varandra som stöd. Tillsammans tar vi oss an alla utmaningar som spelet för med sig! Ingen tidigare erfarenhet av spelet behövs, eftersom det alltid finns en spelledare för att hjälpa till.</p><p>Huvudspråket för den här hobby är finska.</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmäla dig till gruppen via länk Övrig information. </p><p>Hobbyn fortsätter under hela läsåret, om inget annat nämns. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna. </p><p>Kontakta den som ordnar hobbyn om du har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo.<br></p>", "en": "<p>In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft with only each other for support. Together we'll take on all the challenges the game brings! No previous experience of the game is necessary, as there's always a game leader on hand to help.</p><p>This hobby is organised in Finnish.</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. You can register by choosing the Additional information link. </p><p>The hobby will continue throughout the school year, unless stated otherwise. The hobby is free-of-charge to the participants. The City of Espoo has insured the participants of hobby groups. </p><p>Please contact the organiser of the activity if you want to ask more about the activity.</p><p>Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "name": { "fi": "Minecraft Seikkailijat 3.-6.-luokkalaisille Entressessä", "sv": "Minecraft Äventyrare för åk 3-6 i Entresse", "en": "Minecraft Adventurers for 3rd-6th graders in Entresse" }, "provider_contact_info": null, "location_extra_info": { "fi": "Yhteystiedot: Harrastuskoordinaattori@XRoc.gg", "sv": "Kontaktinformation: Harrastuskoordinaattori@XRoc.gg", "en": "Contact details: Harrastuskoordinaattori@XRoc.gg" }, "provider": { "fi": "XRoc / Espoon harrastuspolku", "sv": "XRoc / Hobbystigen i Esbo", "en": "XRoc / Espoo Hobby Path" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2iu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2me", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.407707Z", "last_modified_time": "2023-12-13T11:20:12.407727Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 143, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kera", "sv": "Kera", "en": "Kera" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2wy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-10T13:41:57.422164Z", "last_modified_time": "2024-04-26T10:48:56.552353Z", "date_published": null, "start_time": "2024-05-03T12:00:00Z", "end_time": "2024-05-03T13: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": "Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark.", "en": "In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft." }, "info_url": { "fi": "https://www.xroc.gg/koulut/", "sv": "https://www.xroc.gg/koulut/", "en": "https://www.xroc.gg/koulut/" }, "description": { "fi": "<p>Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otamme vastaan kaikki pelin tuovat haasteet yhdessä! Pelistä ei tarvitse olla aiempaa kokemusta, sillä paikalla on aina peliohjaaja, joka on aina valmiina auttamaan.</p><p>Harrastuksen kieli on suomi.</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Pääset ilmoittautumaan Lisätietoja-linkistä. </p><p>Harrastus jatkuu koko lukuvuoden ajan, ellei muuta mainita. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat. </p><p>Olethan yhteydessä harrastuksen järjestäjään, mikäli sinulla on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista Harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark med bara varandra som stöd. Tillsammans tar vi oss an alla utmaningar som spelet för med sig! Ingen tidigare erfarenhet av spelet behövs, eftersom det alltid finns en spelledare för att hjälpa till.</p><p>Huvudspråket för den här hobby är finska.</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmäla dig till gruppen via länk Övrig information. </p><p>Hobbyn fortsätter under hela läsåret, om inget annat nämns. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna. </p><p>Kontakta den som ordnar hobbyn om du har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo.<br></p>", "en": "<p>In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft with only each other for support. Together we'll take on all the challenges the game brings! No previous experience of the game is necessary, as there's always a game leader on hand to help.</p><p>This hobby is organised in Finnish.</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. You can register by choosing the Additional information link. </p><p>The hobby will continue throughout the school year, unless stated otherwise. The hobby is free-of-charge to the participants. The City of Espoo has insured the participants of hobby groups. </p><p>Please contact the organiser of the activity if you want to ask more about the activity.</p><p>Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "name": { "fi": "Minecraft Seikkailijat 3.-6.-luokkalaisille Entressessä", "sv": "Minecraft Äventyrare för åk 3-6 i Entresse", "en": "Minecraft Adventurers for 3rd-6th graders in Entresse" }, "provider_contact_info": null, "location_extra_info": { "fi": "Yhteystiedot: Harrastuskoordinaattori@XRoc.gg", "sv": "Kontaktinformation: Harrastuskoordinaattori@XRoc.gg", "en": "Contact details: Harrastuskoordinaattori@XRoc.gg" }, "provider": { "fi": "XRoc / Espoon harrastuspolku", "sv": "XRoc / Hobbystigen i Esbo", "en": "XRoc / Espoo Hobby Path" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2me/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a9094da1-9f7e-46dd-87cb-a0875fb080ed", "has_user_editable_resources": false, "location": { "id": "tprek:73686", "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:laajasalo", "municipality": "Helsinki", "name": { "fi": "Laajasalo", "sv": "Degerö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:yliskylä", "municipality": "Helsinki", "name": { "fi": "Yliskylä", "sv": "Uppby" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:laajasalo", "municipality": "Helsinki", "name": { "fi": "Laajasalo", "sv": "Degerö" } } ], "created_time": "2023-12-30T06:10:21.272874Z", "last_modified_time": "2025-01-30T06:10:17.359466Z", "custom_data": null, "email": "kolmenolla2019@gmail.com", "contact_type": null, "address_region": null, "postal_code": "00840", "post_office_box_num": null, "address_country": null, "deleted": true, "has_upcoming_events": false, "n_events": 46, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.051615, 60.179398 ] }, "telephone": null, "street_address": { "fi": "Yliskylän puistokatu 4", "sv": "Uppby parkgata 4", "en": "Yliskylän puistokatu 4" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.facebook.com/kolmenollasaari/", "sv": "https://www.facebook.com/kolmenollasaari/", "en": "https://www.facebook.com/kolmenollasaari/" }, "description": { "fi": "3-0 on Kauppakeskus Saaressa sijaitseva viihtyisä urheilubaari. Baarin lukuisilta ruuduilta näet parhaat matsit kaikista suurimmista sarjoista, lajista riippumatta. Baarin ohjelmassa monenlaista hauskaa livemusiikista biljardi- ja darts-kisoihin.", "sv": "3-0 är en idrottsbar som ligger i köpcentret Saari i Degerö.", "en": "3-0 is a sports bar located in Shopping Center Saari in Laajasalo. Sports games from several screens. Live music, pool and darts games." }, "name": { "fi": "3-0 Sports Bar", "sv": "3-0 Sports Bar", "en": "3-0 Sports Bar" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:73686/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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:p1947", "has_user_editable_resources": false, "alt_labels": [ "prosperity", "welfare (well-being)", "välfärd" ], "created_time": "2023-08-16T05:19:38.138600Z", "last_modified_time": "2026-01-10T04:42:05.285206Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1966, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "hyvinvointi", "sv": "välmående", "en": "well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kuvakentttestaus_2642024_HW1759630424" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150852, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-26T10:43:46.535095Z", "last_modified_time": "2024-04-26T10:43:46.535112Z", "url": "https://plus.unsplash.com/premium_photo-1678112180202-cd950dbe5a35?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", "name": "c", "cropping": "", "photographer_name": "c", "alt_text": "c", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150852/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-04-26T08:19:16.760516Z", "last_modified_time": "2024-04-26T10:43:47.734834Z", "date_published": "2024-04-26T08:17:54Z", "start_time": "2024-04-26T10:26:00Z", "end_time": "2024-04-26T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-26T10:00:00+03:00", "enrolment_end_time": "2024-04-26T14:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "a" }, "info_url": null, "description": { "fi": "<div><div>a</div></div>" }, "name": { "fi": "Kuvakenttätestaus 26.4.2024 HW" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "a" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a9094da1-9f7e-46dd-87cb-a0875fb080ed/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2p4", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz652q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.994101Z", "last_modified_time": "2023-12-13T11:20:11.994121Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 108, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Gumböle", "sv": "Gumböle", "en": "Gumböle" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65nu", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.890916Z", "last_modified_time": "2023-12-13T11:20:11.890936Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 288, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Karhusuo", "sv": "Björnkärr", "en": "Karhusuo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67mm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.393211Z", "last_modified_time": "2023-12-13T11:20:12.393233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 342, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kauklahti", "sv": "Köklax", "en": "Kauklahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6km/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6ny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6re/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-19T15:40:53.442182Z", "last_modified_time": "2024-04-26T10:42:13.115238Z", "date_published": "2024-04-26T10:15:00Z", "start_time": "2024-05-03T15:00:00Z", "end_time": "2024-05-31T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 18-19.", "sv": "Pingisklubben för unga träffas fredagar klockan 18-19\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 6 pm to 7 pm." }, "info_url": null, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 18-19. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 18-19<br>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe<br>from 6 pm to 7 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "provider_contact_info": null, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2p4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2ti", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz652q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.994101Z", "last_modified_time": "2023-12-13T11:20:11.994121Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 108, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Gumböle", "sv": "Gumböle", "en": "Gumböle" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65nu", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.890916Z", "last_modified_time": "2023-12-13T11:20:11.890936Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 288, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Karhusuo", "sv": "Björnkärr", "en": "Karhusuo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67mm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.393211Z", "last_modified_time": "2023-12-13T11:20:12.393233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 342, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kauklahti", "sv": "Köklax", "en": "Kauklahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-26T10:32:31.162058Z", "last_modified_time": "2024-04-26T10:32:31.162082Z", "date_published": "2024-04-26T10:32:00Z", "start_time": "2024-04-26T15:00:00Z", "end_time": "2024-04-26T16: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": "Nuorille suunnattu pingiskerho kokoontuu Kibessä\nperjantaisin klo. 18-19.", "sv": "Pingisklubben för unga träffas fredagar klockan 18-19\npå ungdomsavdelningen (Kibe).", "en": "The ping-pong club for youth every Friday in Kibe\nfrom 6 pm to 7 pm." }, "info_url": null, "description": { "fi": "<p>Nuorille suunnattu pingiskerho kokoontuu Kibessä perjantaisin klo. 18-19. Pingiskerhon ohjaaja tutustuttaa osallistujia englanniksi pingiksen tekniikkaan ja pelaamiseen.</p>", "sv": "<p>Pingisklubben för unga träffas fredagar klockan 18-19<br>på ungdomsavdelningen (Kibe). Pingisklubbinstruktören introducerar deltagarna i pingisspelandets olika tekniker och tävlingsmoment. Programmet är på finska.</p>", "en": "<p>The ping-pong club for youth every Friday in Kibe<br>from 6 pm to 7 pm. The instructor will introduce the techniques and gameplay of Ping-pong to the participants.</p>" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "provider_contact_info": null, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2ti/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk2wy", "has_user_editable_resources": false, "location": { "id": "tprek:15321", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:06.525842Z", "last_modified_time": "2024-04-09T05:09:27.777156Z", "custom_data": null, "email": "kirjasto.entresse@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02770", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 3657, "image": 7894, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.657864, 60.203636 ] }, "telephone": { "fi": "+358 9 8165 3776" }, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84787", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84787" }, "description": null, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.407707Z", "last_modified_time": "2023-12-13T11:20:12.407727Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 143, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kera", "sv": "Kera", "en": "Kera" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjkzu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjkz5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2a4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2eu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2iu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2me/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-10T13:41:55.943147Z", "last_modified_time": "2024-04-26T10:28:54.079840Z", "date_published": "2024-04-12T01:01:00Z", "start_time": "2024-04-12T12:00:00Z", "end_time": "2024-05-31T13: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": "Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan.", "sv": "I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark.", "en": "In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft." }, "info_url": { "fi": "https://www.xroc.gg/koulut/", "sv": "https://www.xroc.gg/koulut/", "en": "https://www.xroc.gg/koulut/" }, "description": { "fi": "<p>Seikkailijat harrastusryhmässä hyppäämme Minecraftin villiin ja arvaamattomaan erämaailmaan tukenamme vain ja ainoastaan toisemme sekä otamme vastaan kaikki pelin tuovat haasteet yhdessä! Pelistä ei tarvitse olla aiempaa kokemusta, sillä paikalla on aina peliohjaaja, joka on aina valmiina auttamaan.</p><p>Harrastuksen kieli on suomi.</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Pääset ilmoittautumaan Lisätietoja-linkistä. </p><p>Harrastus jatkuu koko lukuvuoden ajan, ellei muuta mainita. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat. </p><p>Olethan yhteydessä harrastuksen järjestäjään, mikäli sinulla on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista Harrastamisen Suomen mallia Espoossa.</p>", "sv": "<p>I hobbygruppen Minecraft Äventyrare hoppar vi in i Minecrafts vilda och oförutsägbara vildmark med bara varandra som stöd. Tillsammans tar vi oss an alla utmaningar som spelet för med sig! Ingen tidigare erfarenhet av spelet behövs, eftersom det alltid finns en spelledare för att hjälpa till.</p><p>Huvudspråket för den här fritidsaktiviteten är finska.</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera sig för att reservera en plats. Anmäl dig till gruppen via länken \"Övrig information\". </p><p>Gruppen fortsätter under hela läsåret, om inget annat nämns. Aktiviteten är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna. </p><p>Kontakta den som ordnar fritidsaktiviteten om du har frågor om den.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo.<br></p>", "en": "<p>In the Minecraft Adventurers hobby group, we jump into the wild and unpredictable wilderness of Minecraft with only each other for support. Together we'll take on all the challenges the game brings! No previous experience of the game is necessary, as there's always a game leader on hand to help.</p><p>This hobby is organised in Finnish.</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place. You can register by choosing the Additional information link. </p><p>The hobby will continue throughout the school year, unless stated otherwise. The hobby is free-of-charge to the participants. The City of Espoo has insured the participants of hobby groups. </p><p>Please contact the organiser of the activity if you want to ask more about the activity.</p><p>Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>" }, "name": { "fi": "Minecraft Seikkailijat 3.-6.-luokkalaisille Entressessä", "sv": "Minecraft Äventyrare för åk 3-6 i Entresse", "en": "Minecraft Adventurers for 3rd-6th graders in Entresse" }, "provider_contact_info": null, "location_extra_info": { "fi": "Yhteystiedot: Harrastuskoordinaattori@XRoc.gg", "sv": "Kontaktinformation: Harrastuskoordinaattori@XRoc.gg", "en": "Contact details: Harrastuskoordinaattori@XRoc.gg" }, "provider": { "fi": "XRoc / Espoon harrastuspolku", "sv": "XRoc / Hobbystigen i Esbo", "en": "XRoc / Espoo Hobby Path" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2wy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:e35d4054-4d6b-4266-b020-f90a08239eec", "has_user_editable_resources": false, "location": { "id": "tprek:74762", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [], "created_time": "2024-03-11T07:09:59.426727Z", "last_modified_time": "2024-03-11T07:09:59.426750Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": null, "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 37, "image": null, "parent": null, "replaced_by": null, "position": null, "telephone": null, "street_address": null, "address_locality": null, "info_url": null, "description": null, "name": { "fi": "Verkkotapahtuma", "sv": "online-evenemang", "en": "online event" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helsinki:aflfbat76e", "has_user_editable_resources": true, "alt_labels": [], "created_time": "2023-09-07T21:31:29.015768Z", "last_modified_time": "2023-09-07T21:31:29.015789Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 118, "image": null, "data_source": "helsinki", "publisher": null, "replaced_by": null, "name": { "fi": "palvelukeskuskortti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helsinki:aflfbatkwe", "has_user_editable_resources": true, "alt_labels": [], "created_time": "2023-09-07T21:31:28.993077Z", "last_modified_time": "2023-09-07T21:31:28.993104Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 119, "image": null, "data_source": "helsinki", "publisher": null, "replaced_by": null, "name": { "fi": "omaishoitoperheet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kultus:1", "has_user_editable_resources": true, "alt_labels": [], "created_time": "2023-09-19T11:01:46.669981Z", "last_modified_time": "2023-09-19T11:01:46.669997Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 124, "image": null, "data_source": "helsinki", "publisher": "ahjo:u480400", "replaced_by": null, "name": { "fi": "Työpaja", "sv": "Verkstad", "en": "Workshop" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?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:p11185", "has_user_editable_resources": false, "alt_labels": [ "live-konsertit", "konserter (evenemang)", "livekonserter" ], "created_time": "2023-08-16T05:18:32.493642Z", "last_modified_time": "2023-08-16T05:18:32.493659Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 213, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "konsertit", "sv": "konserter (framträdanden)", "en": "concerts" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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": 9505, "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:p12297", "has_user_editable_resources": false, "alt_labels": [ "klienter inom psykisk rehabilitering", "mentalvårdsklienter", "psykiska rehabiliteringspatienter" ], "created_time": "2023-08-16T05:15:03.736139Z", "last_modified_time": "2023-08-16T05:15:03.736156Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 268, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "mielenterveyskuntoutujat", "sv": "klienter i psykisk rehabilitering", "en": "patients in psychiatric rehabilitation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1278", "has_user_editable_resources": false, "alt_labels": [ "tanssitaide", "danskonst", "tanssit", "danser" ], "created_time": "2023-08-16T05:19:38.809008Z", "last_modified_time": "2023-08-16T05:19:38.809026Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2847, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "tanssi", "sv": "dans", "en": "dance (performing arts)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p13050", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:15:07.041577Z", "last_modified_time": "2023-08-16T05:15:07.041594Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2896, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapsiperheet", "sv": "barnfamiljer", "en": "families with children" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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:p14004", "has_user_editable_resources": false, "alt_labels": [ "diskussion" ], "created_time": "2023-08-16T05:19:31.102174Z", "last_modified_time": "2023-08-16T05:19:31.102192Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2665, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "keskustelu", "sv": "samtal", "en": "conversation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p15875", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:09:20.413725Z", "last_modified_time": "2023-08-16T05:09:20.413743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 340, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "luennot", "sv": "föreläsningar", "en": "lectures" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16485", "has_user_editable_resources": false, "alt_labels": [ "peruskoululaiset" ], "created_time": "2023-08-16T05:19:09.385735Z", "last_modified_time": "2023-08-16T05:19:09.385751Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 8544, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "koululaiset", "sv": "skolelever", "en": "pupils" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16486", "has_user_editable_resources": false, "alt_labels": [ "studenter (högskolestuderande)" ], "created_time": "2023-08-16T05:19:01.858955Z", "last_modified_time": "2023-08-16T05:19:01.858973Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 473, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "opiskelijat", "sv": "studerande", "en": "students" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p16596", "has_user_editable_resources": false, "alt_labels": [ "turistit" ], "created_time": "2023-08-16T05:15:18.345976Z", "last_modified_time": "2023-08-16T05:15:18.345994Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 119, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "matkailijat", "sv": "turister", "en": "tourists and travellers" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p1947", "has_user_editable_resources": false, "alt_labels": [ "prosperity", "welfare (well-being)", "välfärd" ], "created_time": "2023-08-16T05:19:38.138600Z", "last_modified_time": "2026-01-10T04:42:05.285206Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1966, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "hyvinvointi", "sv": "välmående", "en": "well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p20513", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:06:24.453161Z", "last_modified_time": "2023-08-16T05:06:24.453180Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 94, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "vauvaperheet", "sv": "småbarnsfamiljer", "en": "families with babies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?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:p23886", "has_user_editable_resources": false, "alt_labels": [ "klienter i missbrukarvård", "klienter i missbruksrehabilitering", "klienter i missbruksvård", "rehabiliterade missbrukare", "rehabiliteringspatienter (missbruk)" ], "created_time": "2023-08-16T05:10:32.023983Z", "last_modified_time": "2023-08-16T05:10:32.024002Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 63, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "päihdekuntoutujat", "sv": "klienter i missbrukarrehabilitering", "en": "substance abuse rehabilitation patients" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?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: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:p26626", "has_user_editable_resources": false, "alt_labels": [ "distansdeltagande" ], "created_time": "2023-08-16T05:16:56.313702Z", "last_modified_time": "2023-08-16T05:16:56.313725Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 265, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "etäosallistuminen", "sv": "deltagande på distans", "en": "remote participation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2739", "has_user_editable_resources": false, "alt_labels": [ "kuvaamataide", "kuvaamataiteet", "kuvataiteet" ], "created_time": "2023-08-16T05:18:38.321708Z", "last_modified_time": "2023-08-16T05:18:38.321728Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 870, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kuvataide", "sv": "bildkonst", "en": "fine arts" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2771", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:18:53.164665Z", "last_modified_time": "2023-08-16T05:18:53.164683Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 178, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ulkoilu", "sv": "friluftsliv", "en": "outdoor recreation" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p3128", "has_user_editable_resources": false, "alt_labels": [ "businesses", "liikeyritykset", "affärsföretag" ], "created_time": "2023-08-16T05:19:47.151589Z", "last_modified_time": "2023-08-16T05:19:47.151618Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 129, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "yritykset", "sv": "företag", "en": "enterprises" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p316", "has_user_editable_resources": false, "alt_labels": [ "leikki (leikkiminen)", "barnlek", "lek (barnlek)", "lek (mental aktivitet)", "leken" ], "created_time": "2023-08-16T05:18:19.516069Z", "last_modified_time": "2023-08-16T05:18:19.516089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 57, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikkiminen", "sv": "lek (aktivitet)", "en": "playing (children's games)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p3670", "has_user_editable_resources": false, "alt_labels": [ "ruoat" ], "created_time": "2023-08-16T05:19:11.133220Z", "last_modified_time": "2023-08-16T05:19:11.133238Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 102, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ruoka", "sv": "mat", "en": "food" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5121", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:37.715031Z", "last_modified_time": "2023-08-16T05:19:37.715048Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 777, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "näyttelyt", "sv": "utställningar", "en": "exhibitions" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6165", "has_user_editable_resources": false, "alt_labels": [ "immigrantit", "immigranter" ], "created_time": "2023-08-16T05:19:19.055622Z", "last_modified_time": "2023-08-16T05:19:19.055643Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2220, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "maahanmuuttajat", "sv": "invandrare", "en": "immigrants" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7179", "has_user_editable_resources": false, "alt_labels": [ "funktionshindrade", "people with disabilities", "invalidit", "monivammaiset", "funktionsnedsatta", "handikappade", "invalider", "multihandikappade", "personer med funktionshinder", "personer med funktionsvariationer", "personer med handikapp" ], "created_time": "2023-08-16T05:19:30.806218Z", "last_modified_time": "2023-08-16T05:19:30.806249Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 112, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "vammaiset", "sv": "personer med funktionsnedsättning", "en": "disabled people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7708", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:13.687429Z", "last_modified_time": "2023-08-16T05:19:13.687454Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 118, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työttömät", "sv": "arbetslösa", "en": "unemployed people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?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:p965", "has_user_editable_resources": false, "alt_labels": [ "damsport", "damidrott", "herridrott", "sport", "herrsport", "idrott", "idrott och sport" ], "created_time": "2023-08-16T05:19:48.065449Z", "last_modified_time": "2024-01-18T04:41:59.260277Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 89, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "urheilu", "sv": "sport och idrott", "en": "sports" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://youtu.be/0ER2GMrJ96M?si=WF_wrJWRqSpELLnH", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE54_WAPPU_-_MAYDAY_TEST2342953929" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150817, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-25T11:10:56.335722Z", "last_modified_time": "2024-04-25T11:10:56.335737Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/149f0ea2-975b-ee11-be6e-000d3ab37d34", "name": "Kuvan kuvateksti LE55", "cropping": "", "photographer_name": "Kuvan kuvaajan nimi LE55", "alt_text": "Kuvan alt-teksti LE55", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150817/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "MKtestivideo LE55", "url": "https://www.youtube.com/live/eV25g4VK_Eg?si=eGEEfCE6ZDLR_eKG", "alt_text": "Tämä on videon alt-teksti LE55" } ], "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/es/?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/fr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?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:p11185/?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:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?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:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?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:p965/?format=api" } ], "created_time": "2024-04-25T11:10:57.682544Z", "last_modified_time": "2024-04-26T08:42:39.202173Z", "date_published": "2024-04-25T11:03:04Z", "start_time": "2024-05-03T09:00:00Z", "end_time": "2024-05-03T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 2, "minimum_attendee_capacity": 1, "enrolment_start_time": "2024-04-01T08:00:00+03:00", "enrolment_end_time": "2024-04-29T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest LE55 WAPPU - MAYDAY TEST - Julkaisun tila ja polkutest SHORT DESC" }, "info_url": null, "description": { "fi": "<div><p>MKtest LE55 WAPPU - MAYDAY TEST - Julkaisun tila ja polkutest LONG DESC</p><p> </p></div>" }, "name": { "fi": "MKtest LE55 WAPPU - MAYDAY TEST - Julkaisun tila ja polkutest" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Jari Palomäki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e35d4054-4d6b-4266-b020-f90a08239eec/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:08f6ad2a-d8ed-4edb-a0b2-aa6998e80455", "has_user_editable_resources": false, "location": { "id": "tprek:53087", "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-15T12:12:32.181856Z", "last_modified_time": "2024-02-06T13:15:24.083837Z", "custom_data": null, "email": "kauko.laajaaho@aalto.fi", "contact_type": null, "address_region": null, "postal_code": "02150", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 1, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.825157, 60.188576 ] }, "telephone": { "fi": "+358 50 360 5039" }, "street_address": { "fi": "Puumiehenkuja 5", "sv": "Träkarlsgränden 5", "en": "Puumiehenkuja 5" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://inside.aalto.fi/display/fieng", "sv": "https://inside.aalto.fi/display/fieng", "en": "https://inside.aalto.fi/display/fieng" }, "description": null, "name": { "fi": "Aalto yliopisto K3 1.krs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:53087/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helsinki:aflfbatkwe", "has_user_editable_resources": true, "alt_labels": [], "created_time": "2023-09-07T21:31:28.993077Z", "last_modified_time": "2023-09-07T21:31:28.993104Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 119, "image": null, "data_source": "helsinki", "publisher": null, "replaced_by": null, "name": { "fi": "omaishoitoperheet" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p11185", "has_user_editable_resources": false, "alt_labels": [ "live-konsertit", "konserter (evenemang)", "livekonserter" ], "created_time": "2023-08-16T05:18:32.493642Z", "last_modified_time": "2023-08-16T05:18:32.493659Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 213, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "konsertit", "sv": "konserter (framträdanden)", "en": "concerts" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p15875", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:09:20.413725Z", "last_modified_time": "2023-08-16T05:09:20.413743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 340, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "luennot", "sv": "föreläsningar", "en": "lectures" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=Test_Event_-_Testing_Event_image_field_--TL-DG-250420243381781106" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150841, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T16:02:15.700549Z", "last_modified_time": "2024-04-25T16:02:15.700566Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a7ffd992-c1f8-ee11-a1fd-000d3ad7a4fd", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150841/?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/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "created_time": "2024-04-25T07:18:20.696778Z", "last_modified_time": "2024-04-26T08:41:40.187415Z", "date_published": "2024-04-25T07:16:03Z", "start_time": "2024-05-30T07:22:00Z", "end_time": "2024-05-30T09:22:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-25T08:00:00+03:00", "enrolment_end_time": "2024-05-24T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Test Event - Testing Event image field" }, "info_url": null, "description": { "fi": "<div><p>Test Event - Testing Event image field</p></div>" }, "name": { "fi": "Test Event - Testing Event image field --TL-DG-25.04.2024" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "HEL" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:08f6ad2a-d8ed-4edb-a0b2-aa6998e80455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk22q", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "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:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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: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: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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4pmhu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-03-19T09:55:51.157088Z", "last_modified_time": "2024-04-26T08:06:34.482888Z", "date_published": null, "start_time": "2024-04-30T13:00:00Z", "end_time": "2024-04-30T14: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": "Lasten ja nuorten lautapelikerho kokoontuu Keulassa joka tiistai!\n\nTule mukaan pelaamaan Unoa, Cluedoa, Aliasta ja muita hauskoja lautapelejä!", "sv": "Brädspelsklubben för barn och ungdomar träffas varje tisdag i Keula-området i biblioteket!\n\nKom och spela Uno, Cluedo, Alias och andra roliga brädspel!", "en": "The children and youth board game club meets every Tuesday in Keula area in the library!\n\nJoin us to play Uno, Cluedo, Alias and other fun board games!" }, "info_url": null, "description": { "fi": "<p>Lasten ja nuorten lautapelikerho kokoontuu Keulassa joka tiistai!</p><p>Tule mukaan pelaamaan Unoa, Cluedoa, Aliasta ja muita hauskoja lautapelejä!</p>", "sv": "<p>Brädspelsklubben för barn och ungdomar träffas varje tisdag i Keula-området i biblioteket!</p><p>Kom och spela Uno, Cluedo, Alias och andra roliga brädspel!</p>", "en": "<p>The children and youth board game club meets every Tuesday in Keula area in the library!</p><p>Join us to play Uno, Cluedo, Alias and other fun board games!</p>" }, "name": { "fi": "Lasten ja nuorten lautapelikerho", "sv": "Brädspelsklubb för barn och ungdomar", "en": "Board game club for children and youth" }, "provider_contact_info": null, "location_extra_info": { "fi": "Keula", "sv": "Keula", "en": "Keula" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk22q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk26e", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "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:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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: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: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:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoc4plhm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-03-19T10:04:45.587867Z", "last_modified_time": "2024-04-26T07:35:15.930723Z", "date_published": null, "start_time": "2024-04-30T13:00:00Z", "end_time": "2024-04-30T14: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": "Tiistaisin vietetään Messissä isompien peli-iltaa, klo 16.00 alkaen.", "sv": "På tisdagar har vi en k-12 spelkväll på Messi, med start kl. 16.00.", "en": "On Tuesdays,we have a game night for 12 year olds and older kids at the Messi, starting at 16.00." }, "info_url": null, "description": { "fi": "<p>Tiistaisin vietetään Messissä isompien peli-iltaa, klo 16.00 alkaen.</p><p>Konsoleilla ja tietokoneilla on mahdollista pelata K-12 pelejä.</p><p>Valmistaudu todistamaan ikäsi esim. kirjastokortillasi!</p>", "sv": "<p>På tisdagar har vi en k-12 spelkväll på Messi, med start kl. 16.00.</p><p>K-12-spel kan spelas på konsoler och datorer.</p><p>Var beredd på att bevisa din ålder, t.ex. med ditt bibliotekskort!</p>", "en": "<p>On Tuesdays,we have a game night for 12 year olds and older kids at the Messi, starting at 16.00.</p><p>K-12 games can be played on consoles and computers.</p><p>Be prepared to prove your age, e.g. with your library card!</p>" }, "name": { "fi": "K-12 peli-ilta", "sv": "Spelkväll för K-12", "en": "K-12 games night" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk26e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk3bq", "has_user_editable_resources": false, "location": { "id": "tprek:15311", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:05.278840Z", "last_modified_time": "2024-04-09T05:09:27.677777Z", "custom_data": null, "email": "kirjasto.tapiola@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1742, "image": 7887, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.804646, 60.178085 ] }, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84850" }, "description": null, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz656q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.025448Z", "last_modified_time": "2023-12-13T11:20:12.025466Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 67, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Keilaniemi", "sv": "Kägeludden", "en": "Keilaniemi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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: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:agggfz67bu", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.307740Z", "last_modified_time": "2023-12-13T11:20:12.307765Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 68, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Laajalahti", "sv": "Bredvik", "en": "Laajalahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?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": "espoo_le:agggfz7ao4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.668180Z", "last_modified_time": "2023-12-13T11:20:12.668197Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 368, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Haukilahti", "sv": "Gäddvik", "en": "Haukilahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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:p1947", "has_user_editable_resources": false, "alt_labels": [ "prosperity", "welfare (well-being)", "välfärd" ], "created_time": "2023-08-16T05:19:38.138600Z", "last_modified_time": "2026-01-10T04:42:05.285206Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1966, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "hyvinvointi", "sv": "välmående", "en": "well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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: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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-26T06:23:29.654076Z", "last_modified_time": "2024-04-26T06:34:39.914543Z", "date_published": "2024-04-26T06:20:00Z", "start_time": "2024-05-30T10:00:00Z", "end_time": "2024-05-30T13: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 juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen! ", "sv": "Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj.", "en": "Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. " }, "info_url": null, "description": { "fi": "<p>Liikunnanohjaajamme ovat tavattavissa kirjastoissa toukokuussa tiistaisin ja torstaisin klo 13–16.</p><p>ti 14.5. Lippulaivan kirjasto <br>to 16.5. Iso Omenan kirjasto <br>ti 21.5. Kalajärven kirjasto <br>to 23.5. Entressen kirjasto <br>ti 28.5. Sellon kirjasto <br><b>to 30.5. Tapiolan kirjasto</b> <br></p>", "sv": "<p>Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj. Tillställningen är gratis.</p><p>ti 14.5. kl.13–16 Lippulaiva bibliotek<br>to 16.5 kl. 13–16 Iso omena bibliotek<br>ti 21.5. kl. 13–16 Kalajärvi bibliotek<br>to 23.5. kl. 13–16 Entresse bibliotek<br>ti 28.5. kl. 13–16 Sello bibliotek<br><b>to 30.5. kl. 13–16 Hagalunds bibliotek</b></p>", "en": "<p>Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. The event is free of charge.</p><p><br>Tue. 14.5. 13–16 Lippulaiva library<br>Thu. 16.5 13–16 Iso omena library<br>Tue. 21.5. 13–16 Kalajärvi library<br>Thu. 23.5. 3–16 Entresse library<br>Tue. 28.5. 13–16 Sello library<br><b>Thu. 30.5. 13–16 Tapiola library</b></p>" }, "name": { "fi": "Liikuntaneuvontakiertue Tapiolassa", "sv": "Motionsrådgivningturné i Hagalund", "en": "Exercise counselling tour at Tapiola" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Länsi-Uudenmaan hyvinvointialue", "sv": "Västra Nylands välfärdsområde", "en": "Western Uusimaa Wellbeing Services County" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3bq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk3fe", "has_user_editable_resources": false, "location": { "id": "espoo_le:agggfz65ay", "has_user_editable_resources": false, "data_source": "espoo_le", "publisher": "espoo:kaupunki", "divisions": [], "created_time": "2023-12-13T11:20:11.791126Z", "last_modified_time": "2023-12-13T11:20:11.791152Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": null, "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": null, "telephone": null, "street_address": null, "address_locality": null, "info_url": null, "description": null, "name": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/espoo_le:agggfz65ay/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz652q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.994101Z", "last_modified_time": "2023-12-13T11:20:11.994121Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 108, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Gumböle", "sv": "Gumböle", "en": "Gumböle" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz656q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.025448Z", "last_modified_time": "2023-12-13T11:20:12.025466Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 67, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Keilaniemi", "sv": "Kägeludden", "en": "Keilaniemi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "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:agggfz65ie", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.846704Z", "last_modified_time": "2023-12-13T11:20:11.846734Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2435, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoon keskus", "sv": "Esbo centrum", "en": "Espoon keskus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65ka", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.861544Z", "last_modified_time": "2023-12-13T11:20:11.861564Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2340, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Muurala", "sv": "Morby", "en": "Muurala" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65l4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.876507Z", "last_modified_time": "2023-12-13T11:20:11.876525Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2334, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kaupunginkallio", "sv": "Stadsberget", "en": "Kaupunginkallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65nu", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.890916Z", "last_modified_time": "2023-12-13T11:20:11.890936Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 288, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Karhusuo", "sv": "Björnkärr", "en": "Karhusuo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65pm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.905249Z", "last_modified_time": "2023-12-13T11:20:11.905267Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 25, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Karvasmäki", "sv": "Karvasbacka", "en": "Karvasmäki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65re", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.918967Z", "last_modified_time": "2023-12-13T11:20:11.919009Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 49, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kolmperä", "sv": "Kolmpers", "en": "Kolmperä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65uy", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.948152Z", "last_modified_time": "2023-12-13T11:20:11.948172Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 33, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Nupuri", "sv": "Nupurböle", "en": "Nupuri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz65yq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.979072Z", "last_modified_time": "2023-12-13T11:20:11.979091Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 33, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Vanha-Nuuksio", "sv": "Gamla Noux", "en": "Vanha-Nuuksio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz662q", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.249106Z", "last_modified_time": "2023-12-13T11:20:12.249122Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 78, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Viherlaakso", "sv": "Gröndal", "en": "Viherlaakso" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz662q/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz665y", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.276401Z", "last_modified_time": "2023-12-13T11:20:12.276418Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 39, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Bodom", "sv": "Bodom", "en": "Bodom" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz667y", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.292077Z", "last_modified_time": "2023-12-13T11:20:12.292102Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 40, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Röylä", "sv": "Rödskog", "en": "Röylä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?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: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:agggfz66dy", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.069264Z", "last_modified_time": "2023-12-13T11:20:12.069291Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 169, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kalajärvi", "sv": "Kalajärvi", "en": "Kalajärvi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.109319Z", "last_modified_time": "2023-12-13T11:20:12.109338Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 401, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Nöykkiö", "sv": "Nöykis", "en": "Nöykkiö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le: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:agggfz66tq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.193875Z", "last_modified_time": "2023-12-13T11:20:12.193895Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 489, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kilo", "sv": "Kilo", "en": "Kilo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66w4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.220847Z", "last_modified_time": "2023-12-13T11:20:12.220864Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 418, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lintuvaara", "sv": "Fågelberga", "en": "Lintuvaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66yu", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.236299Z", "last_modified_time": "2023-12-13T11:20:12.236316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 41, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lippajärvi", "sv": "Klappträsk", "en": "Lippajärvi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66yu/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz673u", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.515580Z", "last_modified_time": "2023-12-13T11:20:12.515597Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 100, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Niipperi", "sv": "Nipert", "en": "Niipperi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?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:agggfz677i", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.544071Z", "last_modified_time": "2023-12-13T11:20:12.544088Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 62, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Nuuksio", "sv": "Noux", "en": "Nuuksio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67bu", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.307740Z", "last_modified_time": "2023-12-13T11:20:12.307765Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 68, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Laajalahti", "sv": "Bredvik", "en": "Laajalahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67dq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.322308Z", "last_modified_time": "2023-12-13T11:20:12.322334Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 405, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Suurpelto", "sv": "Storåkern", "en": "Suurpelto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67g4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.349896Z", "last_modified_time": "2023-12-13T11:20:12.349921Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 47, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Järvenperä", "sv": "Träskända", "en": "Järvenperä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?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": "espoo_le:agggfz67ku", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.379012Z", "last_modified_time": "2023-12-13T11:20:12.379033Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 41, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Karakallio", "sv": "Karabacka", "en": "Karakallio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67mm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.393211Z", "last_modified_time": "2023-12-13T11:20:12.393233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 342, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kauklahti", "sv": "Köklax", "en": "Kauklahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.407707Z", "last_modified_time": "2023-12-13T11:20:12.407727Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 143, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kera", "sv": "Kera", "en": "Kera" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67p4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.420717Z", "last_modified_time": "2023-12-13T11:20:12.420738Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 112, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kurttila", "sv": "Kurtby", "en": "Kurttila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67rm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.433142Z", "last_modified_time": "2023-12-13T11:20:12.433163Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 113, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Lahnus", "sv": "Lahnus", "en": "Lahnus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67uy", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.460688Z", "last_modified_time": "2023-12-13T11:20:12.460708Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 112, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonkartano", "sv": "Esbogård", "en": "Espoonkartano" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67wm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.473201Z", "last_modified_time": "2023-12-13T11:20:12.473221Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 115, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Latokaski", "sv": "Ladusved", "en": "Latokaski" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67ya", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.485958Z", "last_modified_time": "2023-12-13T11:20:12.485999Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 130, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Luukki", "sv": "Luk", "en": "Luukki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?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:agggfz7aa4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.557017Z", "last_modified_time": "2023-12-13T11:20:12.557037Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 56, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Perusmäki", "sv": "Grundbacka", "en": "Perusmäki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?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:agggfz7aem", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.584781Z", "last_modified_time": "2023-12-13T11:20:12.584810Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 328, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Saunalahti", "sv": "Bastvik", "en": "Saunalahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz7aju", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.627675Z", "last_modified_time": "2023-12-13T11:20:12.627692Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 112, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Vanttila", "sv": "Fantsby", "en": "Vanttila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz7alq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.641407Z", "last_modified_time": "2023-12-13T11:20:12.641426Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 46, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Velskola", "sv": "Vällskog", "en": "Velskola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?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": "espoo_le:agggfz7ao4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.668180Z", "last_modified_time": "2023-12-13T11:20:12.668197Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 368, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Haukilahti", "sv": "Gäddvik", "en": "Haukilahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz7aqq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.681933Z", "last_modified_time": "2023-12-13T11:20:12.681950Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 328, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Henttaa", "sv": "Hemtans", "en": "Henttaa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz7asq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.697468Z", "last_modified_time": "2023-12-13T11:20:12.697485Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 21, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Högnäs", "sv": "Högnäs", "en": "Högnäs" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7asq/?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:p1947", "has_user_editable_resources": false, "alt_labels": [ "prosperity", "welfare (well-being)", "välfärd" ], "created_time": "2023-08-16T05:19:38.138600Z", "last_modified_time": "2026-01-10T04:42:05.285206Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1966, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "hyvinvointi", "sv": "välmående", "en": "well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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: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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-23T13:04:51.261527Z", "last_modified_time": "2024-04-26T06:20:24.327804Z", "date_published": "2024-04-24T09:00:00Z", "start_time": "2024-05-14T10:00:00Z", "end_time": "2024-05-30T13: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 juttelemaan omasta hyvinvoinnista ja saa vinkkejä liikkumiseen! ", "sv": "Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj.", "en": "Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. " }, "info_url": null, "description": { "fi": "<p>Liikunnanohjaajamme ovat tavattavissa kirjastoissa toukokuussa tiistaisin ja torstaisin klo 13–16.</p><p>ti 14.5. Lippulaivan kirjasto </p><p>to 16.5. Iso Omenan kirjasto </p><p>ti 21.5. Kalajärven kirjasto </p><p>to 23.5. Entressen kirjasto </p><p>ti 28.5. Sellon kirjasto </p><p>to 30.5. Tapiolan kirjasto <br></p>", "sv": "<p>Kom och diskutera ditt välmående och få tips om motion! Våra idrottsinstruktörer finns på plats i biblioteken i maj. Tillställningen är gratis.</p><p>ti 14.5. kl.13–16 Lippulaiva bibliotek<br>to 16.5 kl. 13–16 Iso omena bibliotek<br>ti 21.5. kl. 13–16 Kalajärvi bibliotek<br>to 23.5. kl. 13–16 Entresse bibliotek<br>ti 28.5. kl. 13–16 Sello bibliotek<br>to 30.5. kl. 13–16 Hagalunds bibliotek</p>", "en": "<p>Let´s talk about your well-being and physical activity! Our sports instructors will be available for you in libraries in May. The event is free of charge.</p><p><br>Tue. 14.5. 13–16 Lippulaiva library<br>Thu. 16.5 13–16 Iso omena library<br>Tue. 21.5. 13–16 Kalajärvi library<br>Thu. 23.5. 3–16 Entresse library<br>Tue. 28.5. 13–16 Sello library<br>Thu. 30.5. 13–16 Tapiola library</p>" }, "name": { "fi": "Liikuntaneuvontakiertue", "sv": "Motionsrådgivningturné", "en": "Exercise counselling tour" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Länsi-Uudenmaan hyvinvointialue", "sv": "Västra Nylands välfärdsområde", "en": "Western Uusimaa Wellbeing Services County" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3fe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:61911115-cf22-43a5-b537-f1d695ded987", "has_user_editable_resources": false, "location": { "id": "tprek:74762", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [], "created_time": "2024-03-11T07:09:59.426727Z", "last_modified_time": "2024-03-11T07:09:59.426750Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": null, "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 37, "image": null, "parent": null, "replaced_by": null, "position": null, "telephone": null, "street_address": null, "address_locality": null, "info_url": null, "description": null, "name": { "fi": "Verkkotapahtuma", "sv": "online-evenemang", "en": "online event" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE5692765673" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150836, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T13:16:24.830376Z", "last_modified_time": "2024-04-25T13:16:24.830396Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a7cc4457-fe02-ef11-9f89-000d3ab5d1a6", "name": "Porvoo kuvateksti", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Porvoo alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150836/?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:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "created_time": "2024-04-25T12:23:29.225628Z", "last_modified_time": "2024-04-25T13:16:26.192251Z", "date_published": "2024-04-25T12:19:25Z", "start_time": "2024-04-25T12:26:00Z", "end_time": "2024-04-25T14:26:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-22T08:00:00+03:00", "enrolment_end_time": "2024-04-23T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest LE56 short desc" }, "info_url": null, "description": { "fi": "<div><p>MKtest LE56 long desc</p></div>" }, "name": { "fi": "MKtest LE56 Porvoo (päivitys 1)" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "MKtest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:61911115-cf22-43a5-b537-f1d695ded987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:da6effef-b70b-42f8-8421-96d3a1a223fb", "has_user_editable_resources": false, "location": { "id": "tprek:50401", "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:ullanlinna", "municipality": "Helsinki", "name": { "fi": "Ullanlinna", "sv": "Ulrikasborg" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaartinkaupunki", "municipality": "Helsinki", "name": { "fi": "Kaartinkaupunki", "sv": "Gardesstaden" } } ], "created_time": "2023-08-15T11:18:21.355028Z", "last_modified_time": "2025-02-03T06:09:41.021120Z", "custom_data": null, "email": "info@allasseapool.fi", "contact_type": null, "address_region": null, "postal_code": "00160", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 1, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.957443, 60.167084 ] }, "telephone": { "fi": "+358 40 565 6582" }, "street_address": { "fi": "Katajanokanlaituri 2", "sv": "Skatuddskajen 2", "en": "Katajanokanlaituri 2" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.allasseapool.fi", "sv": "http://www.allasseapool.fi", "en": "http://www.allasseapool.fi" }, "description": { "fi": "Kolme saunaa: yksi naisille, yksi miehille ja yksi tilaus-/yhteissauna. Kaksi isointa allasta on myös talvikäytössä. Altaalla ravintola-, kulttuuri- ja liikuntatoimintaa." }, "name": { "fi": "Allas Pool / Merikylpylä", "sv": "Allas Pool / Friluftsbad" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50401/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p7179", "has_user_editable_resources": false, "alt_labels": [ "funktionshindrade", "people with disabilities", "invalidit", "monivammaiset", "funktionsnedsatta", "handikappade", "invalider", "multihandikappade", "personer med funktionshinder", "personer med funktionsvariationer", "personer med handikapp" ], "created_time": "2023-08-16T05:19:30.806218Z", "last_modified_time": "2023-08-16T05:19:30.806249Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 112, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "vammaiset", "sv": "personer med funktionsnedsättning", "en": "disabled people" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE562903576829", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE562903576829" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150831, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T13:13:58.372742Z", "last_modified_time": "2024-04-25T13:13:58.372767Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/1dafdf5c-0503-ef11-9f89-000d3ab5d1a6", "name": "Porvoo kuvateksti > Kuvan vaihto Allas Sea pooliksi", "cropping": "", "photographer_name": "Lars Linssi > Kuvan vaihto Allas Sea pooliksi", "alt_text": "Porvoo alt-teksti > Kuvan vaihto Allas Sea pooliksi", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150831/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@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:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" } ], "created_time": "2024-04-25T13:14:00.099846Z", "last_modified_time": "2024-04-25T13:14:00.099864Z", "date_published": "2024-04-25T13:05:19Z", "start_time": "2024-04-25T12:26:00Z", "end_time": "2024-04-25T14:26:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-04-22T08:00:00+03:00", "enrolment_end_time": "2024-04-23T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest LE59 Allas Sea Pool short desc", "sv": "MKtest LE59 Allas Sea Pool short desc SWE" }, "info_url": null, "description": { "fi": "<div><p>MKtest LE59 Allas Sea Pool long desc</p></div>", "sv": "<div><p>MKtest LE59 Allas Sea Pool long desc SWE</p></div>" }, "name": { "fi": "MKtest LE59 Allas Sea Pool", "sv": "MKtest LE59 Allas Sea Pool SWE" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "MKtest", "sv": "MKtest in sv" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:da6effef-b70b-42f8-8421-96d3a1a223fb/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:dad7a2cd-711b-484d-bccd-d5d956319021", "has_user_editable_resources": false, "location": { "id": "tprek:21196", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:jätkäsaari", "municipality": "Helsinki", "name": { "fi": "Jätkäsaari", "sv": "Busholmen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:länsisatama", "municipality": "Helsinki", "name": { "fi": "Länsisatama", "sv": "Västra Hamnen" } } ], "created_time": "2023-08-15T08:17:13.766078Z", "last_modified_time": "2025-01-28T06:09:30.408755Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00220", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 1, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.920958, 60.156 ] }, "telephone": null, "street_address": { "fi": "Tyynenmerenkatu 11", "sv": "Stillahavsgatan 11", "en": "Tyynenmerenkatu 11" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.verkkokauppa.com/", "sv": "https://www.verkkokauppa.com/", "en": "https://www.verkkokauppa.com/" }, "description": { "fi": "Verkkokauppa.com on kodinelektroniikan jälleenmyyjä, jonka valikoimiin kuuluu 60 000 tuotetta mukaan lukien televisiot, puhelimet ja tietokoneet. Valikoimaan kuuluu lisäksi laaja valikoima kodinkoneita, kodin sisustustuotteita, leluja sekä monia muita tuotteita. Myymälä ja noutopiste ovat avoinna ympäri vuoden, ja varastosta on mahdollista ostaa tuotteita sekä noutaa verkkotilauksia 24/7. Myös tunnin toimitukset ovat saatavilla ympäri vuorokauden. Liikkeen yhteydessä on kahvila, Wi-Fi, kierrätyspiste ja näköalatasanne, josta löytyy MiG-21BIS -hävittäjä. Tommi Toijan veistos Bad Bad Boy sijaitsee myymälän ulkopuolella.", "en": "Verkkokauppa.com is a large home electronics retailer with an assortment of 60 000 products focusing on televisions, phones, and computers. Additionally, they offer a wide variety of home appliances, home decor, toys, and many other products. The store and pickup point is open all year round, and it is possible to buy items on stock as well as pick up online orders 24/7. One-hour deliveries are also available around the clock. In connection with the store there's a café, Wi-Fi, recycling point and a sightseeing terrace with a MiG-21BIS fighter. The sculpture Bad Bad Boy by Tommi Toija is situated outside the store." }, "name": { "fi": "Verkkokauppa.com Helsinki", "en": "Verkkokauppa.com Helsinki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:21196/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p316", "has_user_editable_resources": false, "alt_labels": [ "leikki (leikkiminen)", "barnlek", "lek (barnlek)", "lek (mental aktivitet)", "leken" ], "created_time": "2023-08-16T05:18:19.516069Z", "last_modified_time": "2023-08-16T05:18:19.516089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 57, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikkiminen", "sv": "lek (aktivitet)", "en": "playing (children's games)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE573042287985", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0967cec0-3302-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE573042287985" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150830, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-25T13:02:03.746640Z", "last_modified_time": "2024-04-25T13:02:03.746655Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a8cc4457-fe02-ef11-9f89-000d3ab5d1a6", "name": "Vallisaari kuvateksti", "cropping": "", "photographer_name": "Leif Linssi", "alt_text": "Vallisaari alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150830/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-04-25T13:02:02.044371Z", "last_modified_time": "2024-04-25T13:02:04.969175Z", "date_published": "2024-04-25T12:26:15Z", "start_time": "2024-04-25T12:34:00Z", "end_time": "2024-04-25T14:34:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 2, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 14, "minimum_attendee_capacity": 12, "enrolment_start_time": "2024-04-23T08:30:00+03:00", "enrolment_end_time": "2024-04-23T09:30:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen) short desc", "en": "MKtest LE57 short desc" }, "info_url": null, "description": { "fi": "<div><p>MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen) long desc</p></div>", "en": "<div><div><h1 class=\"pa-tj pa-dp pa-oh pa-do pa-fi pa-tk pa-qw pa-qv pa-tl\" style=\"background-color:rgb(255, 255, 255);border-width:0px;color:rgb(36, 36, 36);font-family:SegoeUI-Semibold, "Segoe UI Semibold", "Segoe UI Regular", "Segoe UI";font-size:20px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:24px;margin:0px;outline:none;padding:0px;text-align:left;text-indent:0px;text-transform:none;white-space:pre-wrap;word-break:break-word;word-spacing:0px;\" data-id=\"header_title\" title=\"MKtest LE57\" id=\"user-content-formHeaderTitle_231\">MKtest LE57 long desc</h1></div></div>" }, "name": { "fi": "MKtest LE57_Vallisaarikuva (päivitys 1 julkaisun jälkeen)", "en": "MKtest LE57 Subject" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "MKtest in suomeksi", "en": "Mr. MK" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:dad7a2cd-711b-484d-bccd-d5d956319021/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk3j4", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "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": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-25T13:01:34.747526Z", "last_modified_time": "2024-04-25T13:01:34.747549Z", "date_published": null, "start_time": "2024-05-06T15:30:00Z", "end_time": "2024-05-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": "Yhteisöteatteri Jäänsärkijöiden aikuisten improryhmä esiintyy.", "sv": "Improvisationsteater på finska", "en": "Improvisation theatre in Finnish" }, "info_url": null, "description": { "fi": "<p>Yhteisöteatteri Jäänsärkijöiden aikuisten improryhmä esiintyy.</p>", "sv": "<p>Improvisationsteater på finska</p>", "en": "<p>Improvisation theatre in Finnish</p>" }, "name": { "fi": "Improvisaatio teatteria", "sv": "Improvisationsteater", "en": "Improvisation theatre" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk3j4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a51f6a3a-b1a6-455b-9297-027cf4410673", "has_user_editable_resources": false, "location": { "id": "tprek:15429", "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:20.585733Z", "last_modified_time": "2024-04-09T05:09:28.462483Z", "custom_data": null, "email": "kirjasto.viherlaakso@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02710", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 62, "image": 7967, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.737932, 60.22465 ] }, "telephone": { "fi": "+358 9 8165 7771" }, "street_address": { "fi": "Kavallinmäki 15", "sv": "Kavallbacken 15", "en": "Kavallinmäki 15" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84795", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84795", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84795" }, "description": null, "name": { "fi": "Viherlaakson kirjasto", "sv": "Gröndals bibliotek", "en": "Viherlaakso Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p316", "has_user_editable_resources": false, "alt_labels": [ "leikki (leikkiminen)", "barnlek", "lek (barnlek)", "lek (mental aktivitet)", "leken" ], "created_time": "2023-08-16T05:18:19.516069Z", "last_modified_time": "2023-08-16T05:18:19.516089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 57, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikkiminen", "sv": "lek (aktivitet)", "en": "playing (children's games)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE582709804814", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/2ae948b1-3402-ef11-9f89-000d3adbeb68?readableEventId=MKtest_LE582709804814" }, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150828, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-25T12:58:45.676257Z", "last_modified_time": "2024-04-25T12:58:45.676274Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/a9cc4457-fe02-ef11-9f89-000d3ab5d1a6", "name": "Lonna kuvateksti", "cropping": "", "photographer_name": "Akseli Linssi", "alt_text": "Lonna alt-teksti", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150828/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-04-25T12:57:24.242592Z", "last_modified_time": "2024-04-25T12:58:47.098651Z", "date_published": "2024-04-25T12:37:44Z", "start_time": "2024-04-25T12:46:00Z", "end_time": "2024-04-25T14:46:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 14, "minimum_attendee_capacity": 12, "enrolment_start_time": "2024-04-01T08:00:00+03:00", "enrolment_end_time": "2024-04-02T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen) fi", "en": "MKtest LE58 short desc en" }, "info_url": null, "description": { "fi": "<div><p>MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen) fi</p><ul><li>Muutettu tapahtuman </li></ul></div>", "en": "<div><div><h1 class=\"pa-tj pa-dp pa-oh pa-do pa-fi pa-tk pa-qw pa-qv pa-tl\" style=\"background-color:rgb(255, 255, 255);border-width:0px;color:rgb(36, 36, 36);font-family:SegoeUI-Semibold, "Segoe UI Semibold", "Segoe UI Regular", "Segoe UI";font-size:20px;font-style:normal;font-weight:normal;letter-spacing:normal;line-height:24px;margin:0px;outline:none;padding:0px;text-align:left;text-indent:0px;text-transform:none;white-space:pre-wrap;word-break:break-word;word-spacing:0px;\" data-id=\"header_title\" title=\"MKtest LE58\" id=\"user-content-formHeaderTitle_241\">MKtest LE58 long desc</h1></div></div>" }, "name": { "fi": "MKtest LE58 Lonna (päivitys 1 julkaisun jälkeen)", "en": "MKtest LE58 en" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "MKtest järjestää fi", "en": "MKtest järjestää en" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a51f6a3a-b1a6-455b-9297-027cf4410673/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63380", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke: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": 1318, "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": 1953, "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:348", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.541371Z", "last_modified_time": "2024-02-06T13:19:15.204233Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1061, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Musiikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:46", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.650020Z", "last_modified_time": "2024-02-06T13:19:14.062702Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 712, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:53", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.753801Z", "last_modified_time": "2024-02-06T13:19:14.219309Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5966, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Suomi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:54", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.766769Z", "last_modified_time": "2024-02-06T13:19:14.242089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4819, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Ruotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:732", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.451857Z", "last_modified_time": "2024-02-06T13:19:17.859046Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1175, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Työpajat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p39924", "has_user_editable_resources": false, "alt_labels": [ "workshops for youth", "nuorten työpajatoiminta", "työpajat (työtoiminta)", "ungdomsverkstadsverksamhet", "verkstäder (arbetsverksamhet)", "workshops for the unemployed", "youth workshops" ], "created_time": "2023-08-16T05:14:24.972589Z", "last_modified_time": "2023-09-02T04:40:32.318089Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1139, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "työpajatoiminta", "sv": "verkstadsverksamhet", "en": "workshops (social inclusion)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p4354", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:41.188656Z", "last_modified_time": "2023-08-16T05:19:41.188674Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 13450, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "lapset (ikäryhmät)", "sv": "barn (åldersgrupper)", "en": "children (age groups)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150620, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T15:13:07.114891Z", "last_modified_time": "2024-04-16T15:13:07.114905Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749081.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150620/?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": "2024-04-16T15:13:07.103655Z", "last_modified_time": "2024-04-25T11:15:14.489623Z", "date_published": null, "start_time": "2024-06-11T07:40: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": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.", "en": "Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CEA7A4112477D8C98E239A58879E49C3/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/CEA7A4112477D8C98E239A58879E49C3/Musikstund_pa_sommaren", "en": "http://www.annantalo.fi/en/events/event/CEA7A4112477D8C98E239A58879E49C3/Summer_Music_Play_School" }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>", "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk. Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>", "en": "<p>Annantalo Art Centre’s Summer Music Play School invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>" }, "name": { "fi": "Kesämuskari – Summer Music Play School", "sv": "Musikstund på sommaren", "en": "Summer Music Play School" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63380/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }