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=845
{ "meta": { "count": 32757, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=846", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=844" }, "data": [ { "id": "espoo_le:aghqjl3btm", "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 ] }, "description": null, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "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" }, "telephone": { "fi": "+358 50 428 9392" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghqjl3b6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-04-22T07:13:32.260085Z", "last_modified_time": "2024-04-22T07:13:32.260109Z", "date_published": null, "start_time": "2024-07-05T14:00:00Z", "end_time": "2024-07-05T16: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": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelikoneet eivät ole käytössä.<br></p>", "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan barnen välja en film från S- och K7-utbudet.</p><p>Under filmvisningen är spelmaskinerna inte tillgängliga.</p>", "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, children can choose a film from the S and K7 selection.</p><p>During the film, the computers are not available.</p>" }, "location_extra_info": { "fi": "Lastenosasto", "sv": "Lastenosasto", "en": "Lastenosasto" }, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn", "en": "Children's Friday movie" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghqjl3btm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghqjl3bxq", "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 ] }, "description": null, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "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" }, "telephone": { "fi": "+358 50 428 9392" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghqjl3b6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-04-22T07:13:32.071782Z", "last_modified_time": "2024-04-22T07:13:32.071807Z", "date_published": null, "start_time": "2024-06-28T14:00:00Z", "end_time": "2024-06-28T16: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": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelikoneet eivät ole käytössä.<br></p>", "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan barnen välja en film från S- och K7-utbudet.</p><p>Under filmvisningen är spelmaskinerna inte tillgängliga.</p>", "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, children can choose a film from the S and K7 selection.</p><p>During the film, the computers are not available.</p>" }, "location_extra_info": { "fi": "Lastenosasto", "sv": "Lastenosasto", "en": "Lastenosasto" }, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn", "en": "Children's Friday movie" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghqjl3bxq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghqjl3b24", "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 ] }, "description": null, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "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" }, "telephone": { "fi": "+358 50 428 9392" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghqjl3b6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-04-22T07:13:31.896096Z", "last_modified_time": "2024-04-22T07:13:31.896119Z", "date_published": null, "start_time": "2024-06-28T14:00:00Z", "end_time": "2024-06-28T16: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": "Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!", "sv": "På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!", "en": "On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!" }, "description": { "fi": "<p>Tervetuloa viettämään perjantaita yhteisen elokuvahetken merkeissä! Kirjaston nuortentilassa järjestetään perjantaisin klo 17 avoin elokuvanäytös lapsille ja perheille. Ota mukaan omat juomat ja naposteltavat!</p><p>Kuun ensimmäisenä perjantaina katsomme aina ikäsuositukseltaan kaikille sallitun elokuvan (S). Muina perjantaina lapset saavat valita elokuvan S ja K7 elokuvien valikoimasta.</p><p>Elokuvan aikana pelikoneet eivät ole käytössä.<br></p>", "sv": "<p>På fredagar kl. 17.00 i bibliotekets ungdomshörna är det öppen filmvisning för barn och familjer. Ta med egen dryck och snacks!</p><p>Den första fredagen i månaden visar vi alltid en åldersanpassad film (S). Övriga fredagar kan barnen välja en film från S- och K7-utbudet.</p><p>Under filmvisningen är spelmaskinerna inte tillgängliga.</p>", "en": "<p>On Fridays at 17:00 in the library's youth area, there is an open cinema screening for children and families. Bring your own drinks and snacks!</p><p>On the first Friday of the month, we always show an age-appropriate film (S). On other Fridays, children can choose a film from the S and K7 selection.</p><p>During the film, the computers are not available.</p>" }, "location_extra_info": { "fi": "Lastenosasto", "sv": "Lastenosasto", "en": "Lastenosasto" }, "name": { "fi": "Lasten perjantaileffa", "sv": "Fredagsfilm för barn", "en": "Children's Friday movie" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghqjl3b24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk6dq", "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 ] }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "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" }, "telephone": { "fi": "+358 9 8165 3776" }, "@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:p2901", "has_user_editable_resources": false, "alt_labels": [ "harrasteet", "hobbyn" ], "created_time": "2023-08-16T05:19:10.519888Z", "last_modified_time": "2023-08-16T05:19:10.519907Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 98, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "harrastukset", "sv": "hobbyer", "en": "hobbies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2p4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-19T15:40:54.917405Z", "last_modified_time": "2024-04-19T15:40:54.917432Z", "date_published": null, "start_time": "2024-05-31T15: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": 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." }, "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>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6dq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk6g4", "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 ] }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "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" }, "telephone": { "fi": "+358 9 8165 3776" }, "@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:p2901", "has_user_editable_resources": false, "alt_labels": [ "harrasteet", "hobbyn" ], "created_time": "2023-08-16T05:19:10.519888Z", "last_modified_time": "2023-08-16T05:19:10.519907Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 98, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "harrastukset", "sv": "hobbyer", "en": "hobbies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2p4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-19T15:40:54.784590Z", "last_modified_time": "2024-04-19T15:40:54.784618Z", "date_published": null, "start_time": "2024-05-24T15:00:00Z", "end_time": "2024-05-24T16: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." }, "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>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6g4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk6km", "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 ] }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "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" }, "telephone": { "fi": "+358 9 8165 3776" }, "@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:p2901", "has_user_editable_resources": false, "alt_labels": [ "harrasteet", "hobbyn" ], "created_time": "2023-08-16T05:19:10.519888Z", "last_modified_time": "2023-08-16T05:19:10.519907Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 98, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "harrastukset", "sv": "hobbyer", "en": "hobbies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2p4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-19T15:40:54.621369Z", "last_modified_time": "2024-04-19T15:40:54.621392Z", "date_published": null, "start_time": "2024-05-17T15:00:00Z", "end_time": "2024-05-17T16: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." }, "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>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6km/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk6ny", "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 ] }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "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" }, "telephone": { "fi": "+358 9 8165 3776" }, "@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:p2901", "has_user_editable_resources": false, "alt_labels": [ "harrasteet", "hobbyn" ], "created_time": "2023-08-16T05:19:10.519888Z", "last_modified_time": "2023-08-16T05:19:10.519907Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 98, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "harrastukset", "sv": "hobbyer", "en": "hobbies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2p4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-19T15:40:54.492483Z", "last_modified_time": "2024-04-19T15:40:54.492509Z", "date_published": null, "start_time": "2024-05-10T15:00:00Z", "end_time": "2024-05-10T16: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." }, "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>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6ny/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agi6bjk6re", "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 ] }, "description": null, "street_address": { "fi": "Siltakatu 11", "sv": "Brogatan 11", "en": "Siltakatu 11" }, "name": { "fi": "Entressen kirjasto", "sv": "Entressebiblioteket", "en": "Entresse Library" }, "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" }, "telephone": { "fi": "+358 9 8165 3776" }, "@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:p2901", "has_user_editable_resources": false, "alt_labels": [ "harrasteet", "hobbyn" ], "created_time": "2023-08-16T05:19:10.519888Z", "last_modified_time": "2023-08-16T05:19:10.519907Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 98, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "harrastukset", "sv": "hobbyer", "en": "hobbies" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk2p4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2024-04-19T15:40:54.368203Z", "last_modified_time": "2024-04-19T15:40:54.368227Z", "date_published": null, "start_time": "2024-05-03T15:00:00Z", "end_time": "2024-05-03T16: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." }, "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>" }, "location_extra_info": { "fi": "Nuortenosasto Kibe", "sv": "Ungdomsavdelningen Kibe", "en": "The Youth section Kibe" }, "name": { "fi": "Nuorten pingiskerho", "sv": "Pingisklubb för unga", "en": "Pingpong for youth" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi6bjk6re/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63440", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "telephone": { "fi": "+358 9 310 85983" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:288", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.310840Z", "last_modified_time": "2024-02-06T13:19:14.904029Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 50, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Muotoilu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke: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:733", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.469645Z", "last_modified_time": "2024-02-06T13:19:17.877406Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 247, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Luennot ja keskustelut" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:751", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:14:00.581860Z", "last_modified_time": "2024-02-06T13:19:18.052324Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 11, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Etäosallistuminen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:751/?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:p25966", "has_user_editable_resources": false, "alt_labels": [ "ekodesign", "sustainable design", "ekologinen muotoilu", "kestävä muotoilu", "ekologisk design", "hållbar design" ], "created_time": "2023-08-16T05:10:50.676134Z", "last_modified_time": "2023-08-16T05:10:50.676153Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 50, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "ekomuotoilu", "sv": "ekodesign", "en": "ecological design" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150710, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T14:14:53.110025Z", "last_modified_time": "2024-04-19T14:14:53.110042Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737849.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150710/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T14:14:53.069781Z", "last_modified_time": "2024-04-19T14:14:53.209064Z", "date_published": null, "start_time": "2024-05-21T10:00:00Z", "end_time": "2024-05-21T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "ArkMuoto-festivaalin helmikuulta 2024 siirtynyt päätapahtuma järjestetään Helsingin Vuosaaressa yhteistyössä Kulttuurikeskus Vuotalon kanssa. Tapahtumaa voi seurata myös verkossa." }, "description": { "fi": "<p>ArkMuoto-festivaalin helmikuulta 2024 siirtynyt päätapahtuma järjestetään Helsingin Vuosaaressa yhteistyössä Kulttuurikeskus Vuotalon kanssa. Tapahtumaa voi seurata myös verkossa.</p><p>Rakennettu ja muotoiltu ympäristömme vaikuttaa suuresti hyvinvointiimme. Kauniit, toimivat ja kestävät tilat ja esineet helpottavat arkeamme ja tuovat iloa elämäämme. Voimme paremmin hyvin suunnitelluissa, laadukkaissa tiloissa. Arjen sujuvuudesta ja hyvinvoinnista huolehtiminen on entistä tärkeämpää globaalien kriisien ja suurten yhteiskunnallisten muutosten paineessa.<br> <br>ArkMuoto avaa uusia näkökulmia omaan rakennettuun ympäristöön. Mitä hyvä tila sinulle merkitsee? Tuoko se elämääsi esimerkiksi viihtyisyyttä, turvallisuutta, kestävyyttä, arjen sujuvuutta vai jotain ihan muuta? Tervetuloa mukaan!</p><p>Tapahtumaa voi seurata myös verkossa, jos et pääse paikan päälle. Ilmoittaudu tapahtumaan etukäteen https://www.archinfo.fi/</p><p><b>Ohjelma</b><br> <br><b>klo 13<br>Tervetuloa Vuosaareen!</b><br>Vuosaaren kaavoituksesta vastaava arkkitehti <b>Petri Leppälä</b> Helsingin kaupungin kaupunkiympäristön toimialalta ja Kulttuurikeskus Vuotalon johtaja <b>Tuuli Tokkola</b> toivottavat meidät tervetulleiksi Vuotaloon ja kertovat alueen kehityksestä ja tulevaisuudesta.</p><p><b>klo 13.30<br>Arkkitehtuuri ja muotoilu osana lasten ja nuorten arkea</b><br>Kuulemme lasten ja nuorten tervehdykset Hintan koulusta Oulusta ja Arkkitehtuurikoulu Tiilestä Tampereelta, minkä jälkeen Vuosaaren lukion kuvaamataidon opettajat ja oppilaat kertovat, miten arkkitehtuuri ja muotoilu ovat läsnä kouluarjessa. Keskustelun juontaa Designmuseon museolehtori <b>Hanna Kapanen.</b></p><p><b>klo 14.15<br>Ajatuksia joustavista oppimisympäristöistä</b><br>Palkittuja oppimisympäristöjä suunnitelleet arkkitehdit <b>Riina Palva</b> Verstas Arkkitehdeilta ja <b>Juha Salmenperä</b> AFKS Arkkitehdeilta keskustelevat Helsingin kaupungin kasvatuksen ja koulutuksen toimialan yksikönjohtajan <b>Vera Schulmanin</b> ja Aalto-yliopiston Media Labin oppimisympäristöjen tutkimusryhmää johtaneen professori <b>Teemu Leinosen</b> kanssa joustavien oppimisympäristöjen uhista ja mahdollisuuksista. Keskustelun juontaa Archinfon viestintäpäällikkö <b>Miina Jutila.</b></p><p><b>klo 15 Kahvitauko</b></p><p><b>klo 15.30<br>Onnellisuuden infrastruktuuri</b><br>JKMM Arkkitehtien mielestä onnellisuus syntyy, kun kulttuuri, tieto ja hyvinvointi kohtaavat. Toimiston töissä yhdistyvät arkkitehtuuri, sisustusarkkitehtuuri, kaupunkisuunnittelu, kalustemuotoilu, grafiikka ja taide. Arkkitehti <b>Samuli Miettinen</b> kertoo menestystä niittäneen toimiston tuoreista töistä, joiden suunnittelun keskiössä on kokonaisvaltainen hyvinvointi.<br> <br><b>klo 16.30<br>ArkMuoto 2024: Hyvässä tilassa -keskustelu</b><br>Kolme suunnittelualojen asiantuntijaa pohtivat rakennettuun ympäristöön liittyviä haasteita, joita heille heittää kolme rakennettua ympäristöä eri näkökulmista katsovaa yhteisöä: Vuosaaren nuorisotyöyksikkö ja Vuosaaren nuoret, Arkkitehtuurikapina-Facebook-ryhmä ja RELEX-säätiö. Asiantuntijat ovat arkkitehti <b>Tommy Lindgren</b> Aalto-yliopistosta, maisema-arkkitehti <b>Pia Kuusiniemi</b> Loci Maisema-arkkitehdeilta ja palvelumuotoilija ja sistusarkkitehti <b>Tiina Hirvanen</b> 2Loops-muotoilutoimistosta. Keskustelun juontaa toimittaja <b>Aino-Mari Tuuri.</b><br> \t<br><b>klo 17.45<br>Palkintoja!</b><br>Päivä päättyy juhlavasti Suomen maisema-arkkitehtiliiton jakamien Vuoden maisema-arkkitehtuuriteko ja Vuoden nuori maisema-arkkitehti -palkinnonsaajien julkistukseen ja SIO:n jakaman Vuoden kalustesuunnittelija 2024:n saajan palkitsemiseen.</p><p>Seminaari ja verkkolähetys päättyvät noin kello 18.15, minkä jälkeen paikan päällä voi jatkaa keskustelua, jakaa päivän tunnelmia ja kohdata uusia ystäviä elävän musiikin ja kuplien siivittämänä.</p><p>Tapahtuma on kaikille avoin ja osallistuminen on ilmaista. Ilmoittautuminen osoitteessa www.arkmuoto.fi.<br> <br>Huomaa myös Open House Helsinki -tapahtuman ArkMuoto-teemakierrokset perjantaina 17.5.! Ilmoittautuminen kierroksille www.openhousehelsinki.fi.</p>" }, "location_extra_info": null, "name": { "fi": "Arkmuoto 2024: Hyvässä tilassa" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3164220A6D7FDD0DBC49DB77C3A3A11A/Arkmuoto_2024_Hyvassa_tilassa" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63440/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63439", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "telephone": { "fi": "+358 9 310 85983" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:33", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.509726Z", "last_modified_time": "2024-02-06T13:19:13.839978Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 761, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:351", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.568885Z", "last_modified_time": "2024-02-06T13:19:15.244248Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 652, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri ja sirkus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke: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:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150709, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T13:13:24.159060Z", "last_modified_time": "2024-04-19T13:13:24.159074Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746441.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150709/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T13:13:24.147091Z", "last_modified_time": "2024-04-19T13:13:24.193428Z", "date_published": null, "start_time": "2024-05-04T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Absurdi komedia ihmisyydestä, järjestelmistä ja muista voimista.", "en": "An absurd comedy about humanity, systems and other forces." }, "description": { "fi": "<p>Absurdi komedia ihmisyydestä, järjestelmistä ja muista voimista.</p><p>Näytelmä tutkii tapaamme sijoittaa muut ja jopa itsemme erilaisiin laatikoihin sekä syitä tähän tarpeeseen.</p><p>Näytelmässä esitetään sosiaalisia rakenteita, jotka perustuvat ennakkoluuloihin, oletuksiin ja stereotypioihin, samalla kun ihmiset nähdään pelinappuloina suurempien voimien käsissä.</p><p>Näytelmän kielenä on englanti.</p><p>Vapaa pääsy.</p>", "en": "<p>An absurd comedy about humanity, systems and other forces.</p><p>The play contemplates our tendency to put others and even ourselves into boxes and the causes behind that need. The play shows social structures with prejudices, assumptions and stereotypes while humans are seen as play pawns for greater forces.</p><p>The language of the play's performance is English.</p><p>Free entrance.</p>" }, "location_extra_info": null, "name": { "fi": "THE BOX – Teatteri Vuosaari", "en": "THE BOX – Theatre Vuosaari" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C10A03BFAE83A4EC8333A6AB2E2C694C/THE_BOX", "en": "http://www.vuotalo.fi/en/events/event/C10A03BFAE83A4EC8333A6AB2E2C694C/THE_BOX" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63439/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63438", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "telephone": { "fi": "+358 9 310 85983" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:33", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.509726Z", "last_modified_time": "2024-02-06T13:19:13.839978Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 761, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:351", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.568885Z", "last_modified_time": "2024-02-06T13:19:15.244248Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 652, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri ja sirkus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke: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:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150708, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T13:13:24.049252Z", "last_modified_time": "2024-04-19T13:13:24.049267Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746440.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150708/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T13:13:24.036163Z", "last_modified_time": "2024-04-19T13:13:24.087000Z", "date_published": null, "start_time": "2024-05-03T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Absurdi komedia ihmisyydestä, järjestelmistä ja muista voimista.", "en": "An absurd comedy about humanity, systems and other forces." }, "description": { "fi": "<p>Absurdi komedia ihmisyydestä, järjestelmistä ja muista voimista.</p><p>Näytelmä tutkii tapaamme sijoittaa muut ja jopa itsemme erilaisiin laatikoihin sekä syitä tähän tarpeeseen.</p><p>Näytelmässä esitetään sosiaalisia rakenteita, jotka perustuvat ennakkoluuloihin, oletuksiin ja stereotypioihin, samalla kun ihmiset nähdään pelinappuloina suurempien voimien käsissä.</p><p>Näytelmän kielenä on englanti.</p><p>Vapaa pääsy!</p>", "en": "<p>An absurd comedy about humanity, systems and other forces.</p><p>The play contemplates our tendency to put others and even ourselves into boxes and the causes behind that need. The play shows social structures with prejudices, assumptions and stereotypes while humans are seen as play pawns for greater forces.</p><p>The language of the play's performance is English.</p><p>Free entrance!</p>" }, "location_extra_info": null, "name": { "fi": "THE BOX – Teatteri Vuosaari", "en": "THE BOX – Theatre Vuosaari" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CAEE60A2988469750B7D7710056506A1/THE_BOX", "en": "http://www.vuotalo.fi/en/events/event/CAEE60A2988469750B7D7710056506A1/THE_BOX" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63437", "has_user_editable_resources": false, "location": { "id": "tprek:7260", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:keski-vuosaari", "municipality": "Helsinki", "name": { "fi": "Keski-Vuosaari", "sv": "Mellersta Nordsjö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:vuosaari", "municipality": "Helsinki", "name": { "fi": "Vuosaari", "sv": "Nordsjö" } } ], "created_time": "2023-08-15T08:12:16.880408Z", "last_modified_time": "2025-03-27T09:09:26.837979Z", "custom_data": null, "email": "vuotalo.vahtimestarit@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00980", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 762, "image": 414657, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 25.143385, 60.208565 ] }, "description": { "fi": "Löydät Vuotalosta konserttien, esitysten ja näyttelyiden lisäksi Vuosaaren kirjaston palvelut, Työväenopiston kursseja ja Kirjakahvila Pokkarin." }, "street_address": { "fi": "Mosaiikkitori 2", "sv": "Mosaiktorget 2", "en": "Mosaiikkitori 2" }, "name": { "fi": "Vuotalo", "sv": "Nordhuset", "en": "Vuosaari House" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "http://www.vuotalo.fi/", "sv": "https://www.vuotalo.fi/sv/framsidan", "en": "https://www.vuotalo.fi/en/frontpage" }, "telephone": { "fi": "+358 9 310 85983" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kulke:33", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.509726Z", "last_modified_time": "2024-02-06T13:19:13.839978Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 761, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:351", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:58.568885Z", "last_modified_time": "2024-02-06T13:19:15.244248Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 652, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Teatteri ja sirkus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke:45", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.630975Z", "last_modified_time": "2024-02-06T13:19:14.040714Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 799, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Vuotalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kulke: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:55", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-09-07T14:13:57.780228Z", "last_modified_time": "2024-02-06T13:19:14.263522Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 5022, "image": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "replaced_by": null, "name": { "fi": "Englanti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2625", "has_user_editable_resources": false, "alt_labels": [ "näyttämötaide", "scenkonst", "dramatic art", "theater", "puheteatteri", "teatteri (taiteet)", "talteater", "teater (konstarter)" ], "created_time": "2023-08-16T05:19:44.444648Z", "last_modified_time": "2023-08-16T05:19:44.444666Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1942, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "teatteritaide", "sv": "teaterkonst", "en": "theatre (art forms)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150707, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T13:13:23.783349Z", "last_modified_time": "2024-04-19T13:13:23.783373Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746439.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150707/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T13:13:23.672252Z", "last_modified_time": "2024-04-19T13:13:23.847194Z", "date_published": null, "start_time": "2024-05-02T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Absurdi komedia ihmisyydestä, järjestelmistä ja muista voimista.", "en": "An absurd comedy about humanity, systems and other forces." }, "description": { "fi": "<p>Absurdi komedia ihmisyydestä, järjestelmistä ja muista voimista.</p><p>Näytelmä tutkii tapaamme sijoittaa muut ja jopa itsemme erilaisiin laatikoihin sekä syitä tähän tarpeeseen.</p><p>Näytelmässä esitetään sosiaalisia rakenteita, jotka perustuvat ennakkoluuloihin, oletuksiin ja stereotypioihin, samalla kun ihmiset nähdään pelinappuloina suurempien voimien käsissä.</p>", "en": "<p>An absurd comedy about humanity, systems and other forces.</p><p>The play contemplates our tendency to put others and even ourselves into boxes and the causes behind that need. The play shows social structures with prejudices, assumptions and stereotypes while humans are seen as play pawns for greater forces.</p><p>The language of the play's performance is English.</p><p>Free entrance</p>" }, "location_extra_info": null, "name": { "fi": "THE BOX – Teatteri Vuosaari", "en": "THE BOX – Theatre Vuosaari" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/10DE6C1D3DD8E4586415B49DDE5944A7/THE_BOX", "en": "http://www.vuotalo.fi/en/events/event/10DE6C1D3DD8E4586415B49DDE5944A7/THE_BOX" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:d476d8a6-5021-4255-874a-95abae4bef47", "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, "description": null, "street_address": null, "name": { "fi": "Verkkotapahtuma", "sv": "online-evenemang", "en": "online event" }, "address_locality": null, "info_url": null, "telephone": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?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: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" } ], "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=MKtest_LE53_testaa_uuden_tapahtuman_kuvaurla531045313" }, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150703, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-19T10:51:23.892065Z", "last_modified_time": "2024-04-19T10:51:23.892087Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/cdc06a4f-76bf-ee11-9079-000d3ab37d34", "name": "KUVATEKSTII", "cropping": "", "photographer_name": "KUVAAJAN NIMITEKSTII", "alt_text": "ALT TEKSTII", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150703/?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:p3128/?format=api" } ], "created_time": "2024-04-19T10:51:25.193520Z", "last_modified_time": "2024-04-19T10:51:25.193537Z", "date_published": "2024-04-19T10:49:12Z", "start_time": "2024-04-24T10:56:00Z", "end_time": "2024-04-24T12:56: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-18T08:00:00+03:00", "enrolment_end_time": "2024-04-23T08:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest LE53_testaa uuden tapahtuman kuvaurl:a SHORT DESCRTION" }, "description": { "fi": "<div><div>MKtest LE53_testaa uuden tapahtuman kuvaurl:a LONG DESCRTION</div></div>" }, "location_extra_info": null, "name": { "fi": "MKtest LE53_testaa uuden tapahtuman kuvaurl:a" }, "info_url": null, "provider": { "fi": "Business Helsinfors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:d476d8a6-5021-4255-874a-95abae4bef47/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:b37551cf-97cd-4361-9dcc-010c97cfddf4", "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, "description": null, "street_address": null, "name": { "fi": "Verkkotapahtuma", "sv": "online-evenemang", "en": "online event" }, "address_locality": null, "info_url": null, "telephone": null, "@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": true, "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/xrOuW4Kr6uw?si=OD8CPBGbZWryK_A6", "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/89a842bf-d9cf-ee11-9079-000d3a658764?readableEventId=MKtest_verkkotapahtuma_LE52_Sanna_Moisalan_validoitavaksi2206047120", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/89a842bf-d9cf-ee11-9079-000d3a658764?readableEventId=MKtest_verkkotapahtuma_LE52_Sanna_Moisalan_validoitavaksi2206047120", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/89a842bf-d9cf-ee11-9079-000d3a658764?readableEventId=MKtest_verkkotapahtuma_LE52_Sanna_Moisalan_validoitavaksi2206047120", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/89a842bf-d9cf-ee11-9079-000d3a658764?readableEventId=MKtest_verkkotapahtuma_LE52_Sanna_Moisalan_validoitavaksi2206047120", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/89a842bf-d9cf-ee11-9079-000d3a658764?readableEventId=MKtest_verkkotapahtuma_LE52_Sanna_Moisalan_validoitavaksi2206047120", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/89a842bf-d9cf-ee11-9079-000d3a658764?readableEventId=MKtest_verkkotapahtuma_LE52_Sanna_Moisalan_validoitavaksi2206047120" }, "price": null, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150700, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-19T10:23:23.913000Z", "last_modified_time": "2024-04-19T10:23:23.913024Z", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/633d0f98-51fd-ee11-a1fe-000d3adbeb68", "name": "MKtest 19.4. Caption. Tämä tieto lisätty päivityssanoman muutoksen jälkeen.", "cropping": "", "photographer_name": "MKtest 19.4. Author Nam e- Tämä tieto lisätty päivityssanoman muutoksen jälkeen.", "alt_text": "Event image URL DEL-MKtest 19.4. alt-tekstiä. Tämä tieto lisätty päivityssanoman muutoksen jälkeen.", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150700/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/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-18T07:09:09.996061Z", "last_modified_time": "2024-04-19T10:23:26.964062Z", "date_published": "2024-04-18T06:54:04Z", "start_time": "2024-04-22T09:00:00Z", "end_time": "2024-04-22T10:00: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": 100, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-04-18T08:00:00+03:00", "enrolment_end_time": "2024-04-19T16:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi SHORT DESC FI", "sv": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi SHORT DESC SWE", "en": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi SHORT DESC EN", "ru": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi SHORT DESC RUS", "zh_hans": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi SHORT DESC CH", "ar": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi SHORT DESC ARAB" }, "description": { "fi": "<div><div><div><div><div>MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi LONG DESC FI</div></div></div></div></div>", "sv": "<div><div><div><div><div>MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi LONG DESC SWE</div></div></div></div></div>", "en": "<div><div><div><div><div>MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi LONG DESC EN</div></div></div></div></div>", "ru": "<div><div><div><div><div>MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi LONG DESC RUS</div></div></div></div></div>", "zh_hans": "<div><div><div><div><div>MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi LONG DESC CH</div></div></div></div></div>", "ar": "<div><div><div><div><div>MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi LONG DESC ARAB</div></div></div></div></div>" }, "location_extra_info": null, "name": { "fi": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi_Päivityssanomaupdate 18.4.", "sv": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi SWE", "en": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi EN", "ru": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi RUS", "zh_hans": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi CH", "ar": "MKtest verkkotapahtuma LE52 Sanna Moisalan validoitavaksi ARAB" }, "info_url": null, "provider": { "fi": "Suomeksi MKtest 19.4. Tämä tieto lisätty päivityssanoman muutoksen jälkeen", "sv": "ruotsiksi", "en": "englanniksi", "ru": "venäjäksi", "zh_hans": "kiinaksi", "ar": "arabiaksi" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:b37551cf-97cd-4361-9dcc-010c97cfddf4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpmffddy", "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 ] }, "description": null, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "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" }, "telephone": { "fi": "+358 50 428 9392" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz7ane", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.654416Z", "last_modified_time": "2023-12-13T11:20:12.654432Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 642, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Westend", "sv": "Westend", "en": "Westend" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8630", "has_user_editable_resources": false, "alt_labels": [ "käden taidot", "handens skicklighet" ], "created_time": "2023-08-16T05:16:25.022022Z", "last_modified_time": "2023-08-16T05:16:25.022045Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1500, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kädentaidot", "sv": "händighet", "en": "craft skills" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-04-19T10:19:35.239988Z", "last_modified_time": "2024-04-19T10:19:35.240022Z", "date_published": null, "start_time": "2024-05-18T07:15:00Z", "end_time": "2024-05-18T09:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule mukaan perhepajaan! Tervetulleita ovat niin isot kuin pienet yhdessä oman aikuisen kanssa.", "sv": "Kom och delta i vår familje-workshop! Både större och mindre barn är välkomna tillsammans med sina föräldrar.", "en": "Come join our family workshop! " }, "description": { "fi": "<p>Tule mukaan perhepajaan! Tervetulleita ovat niin isot kuin pienet yhdessä oman aikuisen kanssa.<br> <br>Aloitamme eläinaiheisella kaksikielisellä (suomi-ruotsi) satuhetkellä, jonka jälkeen askartelemme omia eläimiä.<br> <br>Satuhetki alkaa klo 10.15. Askartelemaan pääsee heti sen jälkeen tai myöhemminkin. Tapahtuma päättyy klo 12.15.</p>", "sv": "<p>Kom och delta i vår familje-workshop! Både större och mindre barn är välkomna tillsammans med sina föräldrar.</p><p>Vi börjar med en tvåspråkig (finska-svenska) sagostund, varefter vi pysslar egna djur.</p><p>Sagostunden börjar klockan 10.15. Pysslandet börjar direkt efter sagostunden men du kan också pyssla senare. Evenemanget avslutas kl. 12.15.</p>", "en": "<p>Come join our family workshop! </p><p>We'll start with a bilingual story time in Finnish and Swedish, after which we'll create our own animals.</p><p>The story time begins at 10.15. You can come and do crafts right after the story time or later. The event ends at 12.15.</p>" }, "location_extra_info": null, "name": { "fi": "Kaksikielinen eläimellinen perhepaja ", "sv": "Tvåspråkig familje-workshop med djurtema ", "en": "Family workshop with an animal theme " }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpmffddy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:aghplho6hi", "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 ] }, "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." }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "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" }, "telephone": { "fi": "+358 9 310 37185" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "kultus:24", "has_user_editable_resources": true, "alt_labels": [], "created_time": "2023-09-19T11:01:46.713124Z", "last_modified_time": "2023-09-19T11:01:46.713139Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5, "image": null, "data_source": "helsinki", "publisher": "ahjo:u480400", "replaced_by": null, "name": { "fi": "Kuvataiteet", "sv": "Bildkonst", "en": "Fine arts" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:24/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "kultus:4", "has_user_editable_resources": true, "alt_labels": [], "created_time": "2023-09-19T11:01:46.698802Z", "last_modified_time": "2023-09-19T11:01:46.698818Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4, "image": null, "data_source": "helsinki", "publisher": "ahjo:u480400", "replaced_by": null, "name": { "fi": "Kirjastovierailu", "sv": "Biblioteksbesök", "en": "Library visit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:4/?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, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "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/kultus:52/?format=api" } ], "created_time": "2024-04-19T09:09:07.785987Z", "last_modified_time": "2024-04-19T09:10:43.239850Z", "date_published": null, "start_time": "2024-04-30T07:00:00Z", "end_time": "2024-04-30T07: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": "2024-04-19T12:15:00+03:00", "enrolment_end_time": "2024-04-30T10:00:00+03:00", "local": false, "replaced_by": null, "short_description": { "fi": "Testing", "sv": "", "en": "" }, "description": { "fi": "<p>adfadsfads</p>\n", "sv": "", "en": "" }, "location_extra_info": null, "name": { "fi": "Suvi testing 2", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghplho6hi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpk4fms4", "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 ] }, "description": null, "street_address": { "fi": "Kavallinmäki 15", "sv": "Kavallbacken 15", "en": "Kavallinmäki 15" }, "name": { "fi": "Viherlaakson kirjasto", "sv": "Gröndals bibliotek", "en": "Viherlaakso Library" }, "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" }, "telephone": { "fi": "+358 9 8165 7771" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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": "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:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fmy4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150683, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T08:08:32.993139Z", "last_modified_time": "2024-04-19T08:08:32.993177Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Dino_ja_Luna.jpg", "name": "", "cropping": "229,0,945,716", "photographer_name": "", "alt_text": "Lukukoiray dino ja Luna", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150683/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T08:11:33.109296Z", "last_modified_time": "2024-04-19T08:11:33.109320Z", "date_published": null, "start_time": "2024-06-06T14:00:00Z", "end_time": "2024-06-06T15: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 tapaamaan lukulemmikkejä ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. </p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. </p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener. </p>" }, "location_extra_info": null, "name": { "fi": "Lukulemmikit Dino ja Luna", "sv": "Läshund Dino och Luna", "en": "Reading dog Dino and Luna" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fms4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpk4fmwy", "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 ] }, "description": null, "street_address": { "fi": "Kavallinmäki 15", "sv": "Kavallbacken 15", "en": "Kavallinmäki 15" }, "name": { "fi": "Viherlaakson kirjasto", "sv": "Gröndals bibliotek", "en": "Viherlaakso Library" }, "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" }, "telephone": { "fi": "+358 9 8165 7771" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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": "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:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fmy4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150683, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T08:08:32.993139Z", "last_modified_time": "2024-04-19T08:08:32.993177Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Dino_ja_Luna.jpg", "name": "", "cropping": "229,0,945,716", "photographer_name": "", "alt_text": "Lukukoiray dino ja Luna", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150683/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T08:11:32.977047Z", "last_modified_time": "2024-04-19T08:11:32.977072Z", "date_published": null, "start_time": "2024-05-02T14:00:00Z", "end_time": "2024-05-02T15: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 tapaamaan lukulemmikkejä ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. </p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. </p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener. </p>" }, "location_extra_info": null, "name": { "fi": "Lukulemmikit Dino ja Luna", "sv": "Läshund Dino och Luna", "en": "Reading dog Dino and Luna" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fmwy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpk4fmy4", "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 ] }, "description": null, "street_address": { "fi": "Kavallinmäki 15", "sv": "Kavallbacken 15", "en": "Kavallinmäki 15" }, "name": { "fi": "Viherlaakson kirjasto", "sv": "Gröndals bibliotek", "en": "Viherlaakso Library" }, "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" }, "telephone": { "fi": "+358 9 8165 7771" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15429/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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": "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:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fms4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fmwy/?format=api" } ], "images": [ { "id": 150683, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T08:08:32.993139Z", "last_modified_time": "2024-04-19T08:08:32.993177Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Dino_ja_Luna.jpg", "name": "", "cropping": "229,0,945,716", "photographer_name": "", "alt_text": "Lukukoiray dino ja Luna", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150683/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T08:11:32.340904Z", "last_modified_time": "2024-04-19T08:11:32.340928Z", "date_published": null, "start_time": "2024-05-02T14:00:00Z", "end_time": "2024-06-06T15: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": "Tule tapaamaan lukulemmikkejä ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. </p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. </p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener. </p>" }, "location_extra_info": null, "name": { "fi": "Lukulemmikit Dino ja Luna", "sv": "Läshund Dino och Luna", "en": "Reading dog Dino and Luna" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fmy4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpk4fm24", "has_user_editable_resources": false, "location": { "id": "tprek:15396", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:16.341489Z", "last_modified_time": "2024-04-09T05:09:28.231947Z", "custom_data": null, "email": "kirjasto.noykkio@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02330", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 127, "image": 7943, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.663368, 60.167595 ] }, "description": null, "street_address": { "fi": "Oxfotintie 4", "sv": "Oxfotvägen 4", "en": "Oxfotintie 4" }, "name": { "fi": "Nöykkiön kirjasto", "sv": "Nöykis bibliotek", "en": "Nöykkiö Library" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84915", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84915", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84915" }, "telephone": { "fi": "+358 9 8165 7734" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15396/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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": "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:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fncu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-19T08:02:19.185303Z", "last_modified_time": "2024-04-19T08:02:19.185325Z", "date_published": null, "start_time": "2024-05-27T15:00:00Z", "end_time": "2024-05-27T16: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 tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ", "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ", "en": "Come and meet the reading dog and read a book of your choice to a patient listener. " }, "description": { "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. </p>", "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. </p>", "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener. </p>" }, "location_extra_info": null, "name": { "fi": "Lukukoira Tirri", "sv": "Läshund Tirri", "en": "Reading dog Tirri" }, "info_url": null, "provider": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpk4fm24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }