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=1248
{ "meta": { "count": 32757, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1249", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&include=location%2Ckeywords&page=1247" }, "data": [ { "id": "espoo_le:aggvuwhjhq", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66oi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.151726Z", "last_modified_time": "2023-12-13T11:20:12.151743Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 3529, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Leppävaara", "sv": "Alberga", "en": "Leppävaara" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5121", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:37.715031Z", "last_modified_time": "2023-08-16T05:19:37.715048Z", "aggregate": false, "deprecated": false, "has_upcoming_events": 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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-30T11:29:03.554581Z", "last_modified_time": "2024-02-06T11:53:13.240699Z", "date_published": null, "start_time": "2024-01-22T06:00:00Z", "end_time": "2024-02-09T18: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": "Näyttely pyrkii herättelemään ymmärrystä puiden merkityksestä. Anne-Maria Vierisen teoksissa on hyödynnetty erilaisia luovia kuvaustekniikoita.", "sv": "Utställningen syftar till att öka medvetenheten om trädens betydelse. Anne-Maria Vierinen använder en mängd olika kreativa fotografiska tekniker i sina verk.", "en": "The exhibition aims to raise awareness of the importance of trees. Anne-Maria Vierinen uses a variety of creative photographic techniques in her works." }, "info_url": { "fi": "https://www.helmet.fi/Preview/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Sellon_omat/Taidenayttelyt(241976)" }, "description": { "fi": "<p>Aikojen alussa uskottiin, että maailmankaikkeuden keskellä oli puu, joka kannatteli taivasta Pohjantähden kohdalla. Maailmanpuu yhdisti kaikkeuden eri kerrokset toisiinsa. Maailmanpuumyytti tunnetaan useissa kulttuureissa erilaisina munnelmina.</p><p>Puilla on myyttinen merkitys ihmiselle. Puut mainitaan usein kansanuskossa, kansanrunoudessa ja Kalevalassa. Ennen puita pidettiin pyhinä. Puiden kohtalo ja ihmisen kohtalo ovat sidottu toisiinsa aivan kuten ennen uskottiin. Näyttelyn tavoitteena on herätellä ymmärtämään puiden merkitystä ja tärkeyttä ja yhdistää myyttinen elementti tähän päivään. Puut ovat tärkeä osa elämää ylläpitävää ekosysteemiä. </p><p>Pyhät lehdot ja pyhät puut pyrittiin hävittämään uuden uskon tultua Suomeen keskiajalta eteenpäin. Aikaisemmin pyhänä pidetyistä puista tuli paholaisen puita. Yhteys puihin ja metsään alkoi hiipua, vaikka se ei koskaan täysin kadonnut. Sama puiden hävittäminen on jatkunut nykypäivään asti, luonnontilaiset metsät ovat lähes täysin kadonneet Suomesta. Esimerkiksi männyt hakataan talousmetsissä usein jo nuoruuden kynnyksellä, 60-80 vuotiaina vaikka niiden keskimääräinen ikä Suomen oloissa olisi noin 300-400 vuotta.</p><p>Lapsuuteni leikkipaikka oli ikivanha sadunomainen kuusimetsä, jonka halkaisi pieni polveileva metsäpuro. Kun olin nuori, puut hakattiin ja tilalle tuli hakkuuaukio ja sittemmin läpitunkematon vesakko. Kunpa voisin joskus palata lapsuuteni ikimetsään.</p><p>Näyttelyn kaikki valokuvat perustuvat puihin ja metsiin. Kuvissa olen halunnut tuoda esille puiden sielua, ei niinkään tieteellistä/realistista kuvaa. Kuvat on toteutettu luovilla kuvaustekniikoilla, hyödyntäen mm. päällekkäisvalotusta kamerassa sekä kameran liikuttelua kuvauksen aikana (intentional camera movement).</p>", "sv": "<p>I tidernas begynnelse trodde man att det fanns ett träd i universums centrum, som höll upp himlen vid polstjärnan. Världsträdet är känt i många kulturer som en symbol för olika myter. Förr i tiden betraktades träd som heliga. Syftet med utställningen är att öka medvetenheten om trädens innebörd och betydelse och att föra in det mytiska elementet i nutiden. Trädens öde och människans öde är sammanflätade, precis som man en gång trodde att de var. Träd är en viktig del av det ekosystem som upprätthåller livet. Alla verk i utställningen är baserade på träd och skogar. I bilderna har jag försökt att få fram trädens själ, snarare än den vetenskapliga/realistiska bilden. </p><p>Anne-Maria Vierinen är en självlärd fotograf, som i sina verk har använt sig av spontana idéer som uppstår i stunden, samt olika kreativa fotografiska tekniker. Hennes verk avbildar ofta naturen på ett sätt som inte kan ses med det mänskliga ögat utan en kamera. Kameran fungerar som en pensel snarare än ett realistiskt uttryck. Förutom naturen inspireras Anne-Marias arbete av folkpoesi, mytologi, olika bildkonsttekniker och gamla målningar. </p>", "en": "<p>At the beginning of time, it was believed that there was a tree at the center of the universe. A colossal tree, that supported the heavens above. A tree, that connected the various layers of heaven, earth and the underworld together, with the Polar Star as it’s center point.</p><p>Trees have a mythical meaning for us in Finland. Trees are mentioned in Finnish folklore, in folk poetry and in the national epic the Kalevala. Trees were considered sacred. The fate of trees and mankind is intertwined just as it was believed in the past. The goal of this photography exhibition is to link ancient folklore to the current day and to also emphasize the importance of trees and forests to us all. Trees are a crucial part of the ecosystems that support life on Earth. </p><p>Sacred groves and sacred trees were decimated in Finland from the Middle Ages and onward. The trees that were considered holy became linked to evil. The strong primordial connection to trees and forests started to fade, but still lives in us all. The same decimation of forests continues to this day in a different form. Old-growth forests have almost completely disappeared from Finland. For example pine trees are often cut down at about 60-80 years old, even if in Finland their average age could be 300-400 years.</p><p>My favourite playground as a child was an ancient spruce tree forest straight from a story book. When I was young the trees were cut down to the last tree. I wish that some day I could still walk in that forest again and hear the whispering of the trees.</p><p>The photographs in the exhibition are all based on trees and forests. In the pictures I have sought to visualize the soul of trees/forest, instead of creating a realistic depiction. Creative photography techniques such as intentional camera movement and multiple exposure in camera were used.</p>" }, "name": { "fi": "Maailmanpuu - valokuvanäyttely", "sv": "Maailmanpuu - fotoutställning", "en": "World Tree - photographic exhibition" }, "provider_contact_info": null, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleria Anna", "en": "Gallery Anna" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggvuwhjhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx4az33m", "has_user_editable_resources": false, "location": { "id": "tprek:12", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:09:16.604313Z", "last_modified_time": "2026-01-30T12:09:16.930282Z", "custom_data": null, "email": "lp.trumpetti@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 30, "image": 7591, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.866907, 60.238144 ] }, "telephone": { "fi": "+358 9 310 41632" }, "street_address": { "fi": "Trumpettikuja 5", "sv": "Trumpetgränden 5", "en": "Trumpettikuja 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "sv": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "en": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti" }, "description": { "fi": "Leikkipuisto Trumpetti sijaitsee Kannelmäessä hyvien kulkuyhteyksien varrella. Leikkipuisto on turvallinen ajanviettopaikka, jossa järjestetään monipuolista toimintaa vauva- ja lapsiperheille sekä koululaisille. Leikkipuistossa on mahdollisuus tutustua muihin lapsiperheisiin ja lapset saavat leikkiseuraa. Aikuiset ja lapset voivat osallistua toiminnan suunnitteluun ja toteutukseen yhdessä ohjaajien kanssa. Leikkipuistossa on mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Toimintamme on maksutonta ja perustuu Helsingin varhaiskasvatussuunnitelmaan.", "sv": "Lekparkerna erbjuder en trygg plats för fritidsaktiviteter och meningsfull sysselsättning för familjer med spädbarn, barn och skolelever. Verksamheten är finskspråkig. I lekparken har vårdnadshavarna och föräldrarna möjlighet att lära känna andra barnfamiljer och barnen har leksällskap. Barn och vuxna kan delta i planeringen och genomförandet av verksamheten tillsammans med ledarna. Du kan värma upp din egen mat och koka kaffe eller te. Vår verksamhet är avgiftsfri och bygger på planen för småbarnspedagogik i Helsingfors." }, "name": { "fi": "Leikkipuisto Trumpetti", "sv": "Lekparken Trumpeten", "en": "Playground Trumpetti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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: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: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: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:p318", "has_user_editable_resources": false, "alt_labels": [ "lastenleikit", "barnlekar" ], "created_time": "2023-08-16T05:19:10.824660Z", "last_modified_time": "2023-08-16T05:19:10.824677Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 73, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikit", "sv": "lekar", "en": "plays and games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso: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:p6915", "has_user_editable_resources": false, "alt_labels": [ "alle kouluikäiset", "barn under skolåldern" ], "created_time": "2023-08-16T05:12:07.170505Z", "last_modified_time": "2023-08-16T05:12:07.170523Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 78, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikki-ikäiset", "sv": "barn i lekåldern", "en": "preschoolers (age group)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6915/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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: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:p1235/?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:p1947/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:42:37.681938Z", "last_modified_time": "2024-02-06T10:42:37.681964Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma luokittelu 2", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx4az33m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3zr22y", "has_user_editable_resources": false, "location": { "id": "tprek:12", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:09:16.604313Z", "last_modified_time": "2026-01-30T12:09:16.930282Z", "custom_data": null, "email": "lp.trumpetti@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 30, "image": 7591, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.866907, 60.238144 ] }, "telephone": { "fi": "+358 9 310 41632" }, "street_address": { "fi": "Trumpettikuja 5", "sv": "Trumpetgränden 5", "en": "Trumpettikuja 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "sv": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "en": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti" }, "description": { "fi": "Leikkipuisto Trumpetti sijaitsee Kannelmäessä hyvien kulkuyhteyksien varrella. Leikkipuisto on turvallinen ajanviettopaikka, jossa järjestetään monipuolista toimintaa vauva- ja lapsiperheille sekä koululaisille. Leikkipuistossa on mahdollisuus tutustua muihin lapsiperheisiin ja lapset saavat leikkiseuraa. Aikuiset ja lapset voivat osallistua toiminnan suunnitteluun ja toteutukseen yhdessä ohjaajien kanssa. Leikkipuistossa on mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Toimintamme on maksutonta ja perustuu Helsingin varhaiskasvatussuunnitelmaan.", "sv": "Lekparkerna erbjuder en trygg plats för fritidsaktiviteter och meningsfull sysselsättning för familjer med spädbarn, barn och skolelever. Verksamheten är finskspråkig. I lekparken har vårdnadshavarna och föräldrarna möjlighet att lära känna andra barnfamiljer och barnen har leksällskap. Barn och vuxna kan delta i planeringen och genomförandet av verksamheten tillsammans med ledarna. Du kan värma upp din egen mat och koka kaffe eller te. Vår verksamhet är avgiftsfri och bygger på planen för småbarnspedagogik i Helsingfors." }, "name": { "fi": "Leikkipuisto Trumpetti", "sv": "Lekparken Trumpeten", "en": "Playground Trumpetti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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: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: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: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:p318", "has_user_editable_resources": false, "alt_labels": [ "lastenleikit", "barnlekar" ], "created_time": "2023-08-16T05:19:10.824660Z", "last_modified_time": "2023-08-16T05:19:10.824677Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 73, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "leikit", "sv": "lekar", "en": "plays and games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p318/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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: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:p1235/?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:p1947/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:10:56.864913Z", "last_modified_time": "2024-02-06T10:10:56.864932Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma luokittelu", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3zr22y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3zhpga", "has_user_editable_resources": false, "location": { "id": "tprek:12", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:09:16.604313Z", "last_modified_time": "2026-01-30T12:09:16.930282Z", "custom_data": null, "email": "lp.trumpetti@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 30, "image": 7591, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.866907, 60.238144 ] }, "telephone": { "fi": "+358 9 310 41632" }, "street_address": { "fi": "Trumpettikuja 5", "sv": "Trumpetgränden 5", "en": "Trumpettikuja 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "sv": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "en": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti" }, "description": { "fi": "Leikkipuisto Trumpetti sijaitsee Kannelmäessä hyvien kulkuyhteyksien varrella. Leikkipuisto on turvallinen ajanviettopaikka, jossa järjestetään monipuolista toimintaa vauva- ja lapsiperheille sekä koululaisille. Leikkipuistossa on mahdollisuus tutustua muihin lapsiperheisiin ja lapset saavat leikkiseuraa. Aikuiset ja lapset voivat osallistua toiminnan suunnitteluun ja toteutukseen yhdessä ohjaajien kanssa. Leikkipuistossa on mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Toimintamme on maksutonta ja perustuu Helsingin varhaiskasvatussuunnitelmaan.", "sv": "Lekparkerna erbjuder en trygg plats för fritidsaktiviteter och meningsfull sysselsättning för familjer med spädbarn, barn och skolelever. Verksamheten är finskspråkig. I lekparken har vårdnadshavarna och föräldrarna möjlighet att lära känna andra barnfamiljer och barnen har leksällskap. Barn och vuxna kan delta i planeringen och genomförandet av verksamheten tillsammans med ledarna. Du kan värma upp din egen mat och koka kaffe eller te. Vår verksamhet är avgiftsfri och bygger på planen för småbarnspedagogik i Helsingfors." }, "name": { "fi": "Leikkipuisto Trumpetti", "sv": "Lekparken Trumpeten", "en": "Playground Trumpetti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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: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: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:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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: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:p1235/?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:p1947/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T10:09:31.964381Z", "last_modified_time": "2024-02-06T10:09:31.964401Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma kohderymät", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3zhpga/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggx3s55p4", "has_user_editable_resources": false, "location": { "id": "tprek:12", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:09:16.604313Z", "last_modified_time": "2026-01-30T12:09:16.930282Z", "custom_data": null, "email": "lp.trumpetti@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 30, "image": 7591, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.866907, 60.238144 ] }, "telephone": { "fi": "+358 9 310 41632" }, "street_address": { "fi": "Trumpettikuja 5", "sv": "Trumpetgränden 5", "en": "Trumpettikuja 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "sv": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "en": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti" }, "description": { "fi": "Leikkipuisto Trumpetti sijaitsee Kannelmäessä hyvien kulkuyhteyksien varrella. Leikkipuisto on turvallinen ajanviettopaikka, jossa järjestetään monipuolista toimintaa vauva- ja lapsiperheille sekä koululaisille. Leikkipuistossa on mahdollisuus tutustua muihin lapsiperheisiin ja lapset saavat leikkiseuraa. Aikuiset ja lapset voivat osallistua toiminnan suunnitteluun ja toteutukseen yhdessä ohjaajien kanssa. Leikkipuistossa on mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Toimintamme on maksutonta ja perustuu Helsingin varhaiskasvatussuunnitelmaan.", "sv": "Lekparkerna erbjuder en trygg plats för fritidsaktiviteter och meningsfull sysselsättning för familjer med spädbarn, barn och skolelever. Verksamheten är finskspråkig. I lekparken har vårdnadshavarna och föräldrarna möjlighet att lära känna andra barnfamiljer och barnen har leksällskap. Barn och vuxna kan delta i planeringen och genomförandet av verksamheten tillsammans med ledarna. Du kan värma upp din egen mat och koka kaffe eller te. Vår verksamhet är avgiftsfri och bygger på planen för småbarnspedagogik i Helsingfors." }, "name": { "fi": "Leikkipuisto Trumpetti", "sv": "Lekparken Trumpeten", "en": "Playground Trumpetti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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: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: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:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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:p11617/?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:p16485/?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:p318/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-06T09:42:00.846965Z", "last_modified_time": "2024-02-06T09:42:00.846998Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma 103", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggx3s55p4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxse4gvi", "has_user_editable_resources": false, "location": { "id": "tprek:46153", "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:etu-töölö", "municipality": "Helsinki", "name": { "fi": "Etu-Töölö", "sv": "Främre Tölö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:etu-töölö", "municipality": "Helsinki", "name": { "fi": "Etu-Töölö", "sv": "Främre Tölö" } } ], "created_time": "2023-08-15T11:15:27.150403Z", "last_modified_time": "2025-12-12T06:09:44.081402Z", "custom_data": null, "email": "info@aaltoee.fi", "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 2, "image": 9616, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.923145, 60.172173 ] }, "telephone": { "fi": "+358 10 837 3700" }, "street_address": { "fi": "Runeberginkatu 14-16", "sv": "Runebergsgatan 14-16", "en": "Runeberginkatu 14-16" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.aalto.fi/fi/toimipisteet/aalto-yliopisto-toolo", "sv": "https://www.aalto.fi/sv/platser/aalto-universitetet-tolo", "en": "https://www.aalto.fi/fi/toimipisteet/aalto-yliopisto-toolo" }, "description": { "fi": "Töölön rakennus on rakennettu funktionalistiseen tyyliin. Vuonna 1950 valmistuneen rakennuksen tilojen suunnittelusta vastasivat arkkitehdit Woldemar Baeckman ja Hugo Harmia ja sisustuksen suunnittelusta sisustusarkkitehdit Olli Borg, Ilmari Tapiovaara ja Maija Heikinheimo. Akustiikan suunnitteli Paavo Arni. Rakennus vihittiin käyttöönsä 2. huhtikuuta 1950. Tiilijulkisivu ja Michael Schilkinin reliefit liittävät arkkitehtuurin myös 1940-luvun romanttiseen suuntaukseen. Rakennus kuuluu kansainväliseen Docomomo-rekisteriin eli modernin arkkitehtuurin suojelukohteisiin.", "sv": "Byggnaden i Tölö är byggd i funktionalistisk stil. Byggnaden blev färdig 1950, och arkitekterna Woldemar Baeckman och Hugo Harmia ansvarade för designen av lokalerna. Inredningen planerades av inredningsarkitekterna Olli Borg, Ilmari Tapiovaara och Maija Heikinheimo. Byggnadens akustik designades av Paavo Arni. Byggnaden invigdes den 2 april 1950. Tegelstenen och Michael Schilkins reliefer kopplar också arkitekturen till den romantiska trenden på 1940-talet. Byggnaden hör till det internationella Docomomo-registret, vilket betyder att den är skyddad modern arkitektur.", "en": "The Töölö building represents a functionalist style. The design of the premises of the building, completed in 1950 (inaugurated on 2 April 1950), was carried out by architects Woldemar Baeckman and Hugo Harmia and interior design by interior designers Olli Borg, Ilmari Tapiovaara and Maija Heikinheimo. The building's acoustics was designed by Paavo Arni. The brick wall and Michael Schilkin's reliefs also link architecture to the romantic trend of the 1940s. The building is part of the Docomomo International Register, a site for modern architecture." }, "name": { "fi": "Aalto-yliopisto Töölö", "sv": "Aalto-universitetet Tölö", "en": "Aalto University Töölö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46153/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso:p1235", "has_user_editable_resources": false, "alt_labels": [ "motion pictures", "movies", "spelfilmer", "elokuvateokset", "filmverk", "film works" ], "created_time": "2023-08-16T05:19:47.298032Z", "last_modified_time": "2023-08-16T05:19:47.298049Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1715, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "elokuvat", "sv": "filmer", "en": "films" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-05T11:42:19.317755Z", "last_modified_time": "2024-02-05T11:42:19.317775Z", "date_published": "2024-02-05T11:41:27Z", "start_time": "2024-02-05T13:50:00Z", "end_time": "2024-02-09T15:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "test" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Alaeventti2955788471" }, "description": { "fi": "<div><div>test</div></div>" }, "name": { "fi": "Alaeventti" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxse4gvi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxsawsky", "has_user_editable_resources": false, "location": { "id": "tprek:12", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:09:16.604313Z", "last_modified_time": "2026-01-30T12:09:16.930282Z", "custom_data": null, "email": "lp.trumpetti@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 30, "image": 7591, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.866907, 60.238144 ] }, "telephone": { "fi": "+358 9 310 41632" }, "street_address": { "fi": "Trumpettikuja 5", "sv": "Trumpetgränden 5", "en": "Trumpettikuja 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "sv": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "en": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti" }, "description": { "fi": "Leikkipuisto Trumpetti sijaitsee Kannelmäessä hyvien kulkuyhteyksien varrella. Leikkipuisto on turvallinen ajanviettopaikka, jossa järjestetään monipuolista toimintaa vauva- ja lapsiperheille sekä koululaisille. Leikkipuistossa on mahdollisuus tutustua muihin lapsiperheisiin ja lapset saavat leikkiseuraa. Aikuiset ja lapset voivat osallistua toiminnan suunnitteluun ja toteutukseen yhdessä ohjaajien kanssa. Leikkipuistossa on mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Toimintamme on maksutonta ja perustuu Helsingin varhaiskasvatussuunnitelmaan.", "sv": "Lekparkerna erbjuder en trygg plats för fritidsaktiviteter och meningsfull sysselsättning för familjer med spädbarn, barn och skolelever. Verksamheten är finskspråkig. I lekparken har vårdnadshavarna och föräldrarna möjlighet att lära känna andra barnfamiljer och barnen har leksällskap. Barn och vuxna kan delta i planeringen och genomförandet av verksamheten tillsammans med ledarna. Du kan värma upp din egen mat och koka kaffe eller te. Vår verksamhet är avgiftsfri och bygger på planen för småbarnspedagogik i Helsingfors." }, "name": { "fi": "Leikkipuisto Trumpetti", "sv": "Lekparken Trumpeten", "en": "Playground Trumpetti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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: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: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:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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:p11617/?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:p16485/?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:p5590/?format=api" } ], "created_time": "2024-02-05T11:24:04.582590Z", "last_modified_time": "2024-02-05T11:24:04.582623Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma 102", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxsawsky/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aggm423bbm", "has_user_editable_resources": false, "location": { "id": "tprek:15311", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:05.278840Z", "last_modified_time": "2024-04-09T05:09:27.677777Z", "custom_data": null, "email": "kirjasto.tapiola@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 1742, "image": 7887, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.804646, 60.178085 ] }, "telephone": { "fi": "+358 50 428 9392" }, "street_address": { "fi": "Espoon kulttuurikeskus, Kulttuuriaukio 2", "sv": "Kulturplatsen 2", "en": "Kulttuuriaukio 2" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84850", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84850" }, "description": null, "name": { "fi": "Tapiolan kirjasto", "sv": "Hagalunds bibliotek", "en": "Tapiola Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz65fm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:11.825528Z", "last_modified_time": "2023-12-13T11:20:11.825556Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 1356, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Tapiola", "sv": "Hagalund", "en": "Tapiola" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://fb.me/e/5aCwnRkBe", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423b3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423b6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423coi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423cym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423c34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423c7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423dca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423dfi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-01-03T08:08:31.581520Z", "last_modified_time": "2024-02-05T08:04:42.778933Z", "date_published": "2024-01-03T08:03:00Z", "start_time": "2024-01-10T08:00:00Z", "end_time": "2024-05-22T09: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": "Enter ry:n vapaaehtoiset seniorit antavat maksutonta ja henkilökohtaista vertaisopastusta tietokoneiden, tablettien ja kännyköiden käytössä." }, "info_url": { "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/" }, "description": { "fi": "<p>Enter ry:n vapaaehtoiset seniorit antavat maksutonta ja henkilökohtaista vertaisopastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Tapiolan kirjasto<br>Kulttuuriaukio 2<br>02100 ESPOO</p><p>Opastusta 10.1.-22.5.2024<br>keskiviikkoisin klo 10-12:00.</p><p>Ajanvaraus Tapiolan kirjastosta<br>tai puhelimitse p. 050 428 9392</p><p>Ota mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat!</p><p>Meillä ikäihmiset opastavat ikäihmisiä. Tervetuloa!</p><p>Lisätietoja: www.entersenior.fi</p>" }, "name": { "fi": "Tietotekniikkaopastusta senioreille" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki" }, "provider": { "fi": "Enter ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggm423bbm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqmkcdu", "has_user_editable_resources": false, "location": { "id": "tprek:64635", "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:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } } ], "created_time": "2023-08-15T16:23:53.187779Z", "last_modified_time": "2024-10-20T05:10:00.743732Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00260", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 4, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.930498, 60.1808 ] }, "telephone": null, "street_address": { "fi": "Hesperianpuisto", "sv": "Hesperiaparken", "en": "Hesperianpuisto" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://oopperabaletti.fi/", "sv": "https://oopperabaletti.fi/", "en": "https://oopperabaletti.fi/" }, "description": { "fi": "Oopperan amfiteatteri sijaitsee Hesperian puistossa, Kansallisoopperan takana.", "en": "The National Opera amphitheatre is located right behind the Finnish National Opera building, in Hesperianpuisto park." }, "name": { "fi": "Oopperan amfiteatteri", "en": "Opera amphitheatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?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: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:p38424", "has_user_editable_resources": false, "alt_labels": [ "välbefinnande", "well-being (physical)", "hyvinvointi (fyysinen)", "hyvinvointi (terveydellinen)", "fysiskt välmående", "välbefinnande (fysiskt)", "välmående (fysiskt)" ], "created_time": "2023-08-16T05:18:40.898852Z", "last_modified_time": "2023-08-16T05:18:40.898869Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 11, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "fyysinen hyvinvointi", "sv": "fysiskt välbefinnande", "en": "physical well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7549, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:35:07.812361Z", "last_modified_time": "2024-02-05T07:35:07.812381Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=4aa39330-156f-4e63-a902-4b57e0b085dd&Timestamp=638424595706698150&Full=true", "name": "Kuvateksti MKtest 02022024", "cropping": "", "photographer_name": "Simo Sattuma", "alt_text": "Kuvan alt-teksti MKtest 02022024", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7549/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Videon nimi MKtest 02022024", "url": "https://www.asdf.fi", "alt_text": "Videon alt-teksti MKtest 02022024" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-05T07:35:10.635728Z", "last_modified_time": "2024-02-05T07:35:10.635751Z", "date_published": "2024-02-02T06:53:47Z", "start_time": "2024-02-05T07:00:00Z", "end_time": "2024-02-05T07:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 50, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-01-29T06:00:00+02:00", "enrolment_end_time": "2024-02-02T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC FI", "en": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842" }, "description": { "fi": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC FI</div></div>", "en": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC EN</div></div>" }, "name": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test", "en": "MKtest 020220241615 D365 to LE 10_video-url-test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki in Finnish", "en": "Business Helsinki in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqmkcdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqhazie", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso: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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7548, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:12:01.964515Z", "last_modified_time": "2024-02-05T07:12:01.964554Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "name": "Kuvan Kuvatekstikentän tietoa", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7548/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@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:p13050/?format=api" } ], "created_time": "2024-02-05T07:12:03.915920Z", "last_modified_time": "2024-02-05T07:12:03.915942Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqhazie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqe3v4e", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso: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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7547, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:02:36.482383Z", "last_modified_time": "2024-02-05T07:02:36.482403Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "name": "Kuvan Kuvatekstikentän tietoa", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@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:p13050/?format=api" } ], "created_time": "2024-02-05T07:02:37.804926Z", "last_modified_time": "2024-02-05T07:02:37.804946Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqe3v4e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxqe2zmq", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso: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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7546, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T07:02:26.410052Z", "last_modified_time": "2024-02-05T07:02:26.410071Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "name": "Kuvan Kuvatekstikentän tietoa", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7546/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@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:p13050/?format=api" } ], "created_time": "2024-02-05T07:02:30.513593Z", "last_modified_time": "2024-02-05T07:02:30.513616Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxqe2zmq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggxp4avqq", "has_user_editable_resources": false, "location": { "id": "tprek:7254", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:helsinki", "municipality": null, "name": { "fi": "Helsinki", "sv": "Helsingfors" } }, { "type": "district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/peruspiiri:kampinmalmi", "municipality": "Helsinki", "name": { "fi": "Kampinmalmi", "sv": "Kampmalmen" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kamppi", "municipality": "Helsinki", "name": { "fi": "Kamppi", "sv": "Kampen" } } ], "created_time": "2023-08-15T08:12:15.860628Z", "last_modified_time": "2025-03-27T09:09:26.669262Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00100", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 862, "image": 414653, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.93472, 60.167854 ] }, "telephone": { "fi": "+358 9 310 37185" }, "street_address": { "fi": "Annankatu 30", "sv": "Annegatan 30", "en": "Annankatu 30" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.annantalo.fi/", "sv": "https://www.annantalo.fi/sv/framsidan", "en": "https://www.annantalo.fi/en/frontpage" }, "description": { "fi": "Annantalo on lasten, nuorten ja perheiden taidekeskus Helsingissä. Annantalossa on taideopetusta, näyttelyitä, esityksiä, tapahtumia ja työpajoja. Järjestämme myös lastenkulttuurin koulutuksia ja seminaareja.", "sv": "Annegården är ett konstcentrum för barn, ungdomar och familjer i Helsingfors. På Annegården ordnas undervisning i konst, utställningar, föreställningar, evenemang och verkstäder. På Annegården ordnas också seminarier och utbildningar som främjar barnkultur.", "en": "Annantalo is an arts centre for children, young people and families in Helsinki. Annantalo is a venue for art education, exhibitions and performances, events and workshops. Annantalo is also a venue for seminars and training courses that promote children's culture." }, "name": { "fi": "Annantalo", "sv": "Annegården", "en": "Annantalo Arts Centre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "yso: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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7545, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-05T06:23:56.666152Z", "last_modified_time": "2024-02-05T06:23:56.666174Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=5e4b6134-97dc-425e-8269-faf179ec665f&Timestamp=638427107696831065&Full=true", "name": "Kuvan Kuvatekstikentän tietoa", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Kuvan Alt-tekstikentän tietoa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@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:p13050/?format=api" } ], "created_time": "2024-02-05T06:23:59.375193Z", "last_modified_time": "2024-02-05T06:23:59.375215Z", "date_published": "2024-02-05T05:59:15Z", "start_time": "2024-02-07T07:00:00Z", "end_time": "2024-02-07T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 30, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-02-05T06:00:00+02:00", "enrolment_end_time": "2024-02-06T14:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC FI", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test SHORT DESC EN" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/229befd2-79bf-ee11-9079-000d3ab37d34?readableEventId=MKtest_050220240800_D365_to_LE_11_LOMAKKEEN_LISKENTT_test3123292467" }, "description": { "fi": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC FI</div>\n<div> </div>\n<div><div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div></div></div>", "en": "<div><div>MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test LONG DESC EN</div>\n<div> </div>\n<div><strong>TÄMÄ ON BOLDATTUA TEKSTIÄ</strong></div>\n<div> </div>\n<div><em>TÄMÄ ON KURSIVOITUA TEKSTIÄ</em></div>\n<div> </div>\n<div><em><strong>TÄMÄ ON BOLDATTUA JA KURSIVOITUA TEKSTIÄ</strong></em></div>\n<div> </div></div>" }, "name": { "fi": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test", "en": "MKtest 050220240800 D365 to LE 11_LOMAKKEEN LISÄKENTTÄ RUOKAVALIO test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "!!! KANSAKOULUKADUN BUSINESS FINLAND FI ***", "en": "!!! KANSAKOULUKADUN BUSINESS FINLAND EN ***" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggxp4avqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:271473", "has_user_editable_resources": false, "location": { "id": "tprek:15417", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T08:14:19.044131Z", "last_modified_time": "2025-01-31T06:09:29.808662Z", "custom_data": null, "email": "sellonkirjasto@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02600", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 4952, "image": 180919, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.80934, 60.217506 ] }, "telephone": { "fi": "+358 9 8165 7603" }, "street_address": { "fi": "Leppävaarankatu 9", "sv": "Albergagatan 9", "en": "Leppävaarankatu 9" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#84925", "en": "https://helmet.finna.fi/OrganisationInfo/Home#84925" }, "description": null, "name": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "helmet:1", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.498337Z", "last_modified_time": "2024-02-06T13:24:05.489393Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 14585, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Tapahtumat", "sv": "Evenemang", "en": "Events", "ru": "Tapahtumat" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10592", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.401744Z", "last_modified_time": "2024-02-06T13:24:05.432038Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 5727, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Yleinen", "sv": "Allmänt", "en": "General", "ru": "Yleinen RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10592/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:10690", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T08:19:43.435139Z", "last_modified_time": "2024-02-06T13:24:05.676676Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 3875, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo", "ru": "Espoo RU" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10690/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "helmet:11687", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-15T12:19:49.722776Z", "last_modified_time": "2024-02-06T13:24:07.827439Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 794, "image": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "replaced_by": null, "name": { "fi": "Pelitapahtumat", "sv": "Spel", "en": "Games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11687/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p6062", "has_user_editable_resources": false, "alt_labels": [ "spel (objekt)" ], "created_time": "2023-08-16T05:19:44.246340Z", "last_modified_time": "2023-08-16T05:19:44.246358Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4010, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "pelit", "sv": "spel", "en": "games" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 2577, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-08-15T15:26:51.467089Z", "last_modified_time": "2024-02-06T13:38:18.601860Z", "url": "https://www.helmet.fi/download/noname/{BEFEF0D1-0268-4938-8B30-4A52D0E09590}/82643", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u48040050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2023-11-26T12:22:01.279256Z", "last_modified_time": "2024-02-04T17:28:20.813876Z", "date_published": "2020-01-01T10:34:00Z", "start_time": "2024-01-04T14:00:00Z", "end_time": "2024-01-04T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lautapeliseuran lautapelikerho kokoontuu torstaisin ympäri vuoden" }, "info_url": null, "description": { "fi": "<h3>Torstaisin klo 16-19.45 Akseli-salissa ( EI 8.2.)</h3></p><p>Lautapeliseuran järjestämä aikuisille suunnattu pelikerho.</p><p> <br> Lisätietoja ja poikkeusaikoja ja -paikkoja: <strong><a href=\"http://www.lautapeliseura.fi/foorumi/\">foorumi</a> </strong><br><br> Pelitietoa <a href=\"http://www.lautapeliseura.fi\">http://www.lautapeliseura.fi</a> <a href=\"https://www.facebook.com/pages/Suomen-lautapeliseura/164470176919869\">Facebookissa</a></p><p>Tervetuloa!<br><br> * * * <br><br> Lautapelikerho jatkuu torstaisin ympäri vuoden. Poikkeuksena sellaiset juhlapyhät, jolloin kirjasto on suljettuna. Jos kirjasto suljetaan klo 18, niin lautapelikerho on klo 17.45 asti.</p><p>Kuva <a href=\"https://unsplash.com/@introspectivedsgn\">Erik Mclean</a></p>" }, "name": { "fi": "Lautapelikerho" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli-sali" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:271473/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aggwua7e2q", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.109319Z", "last_modified_time": "2023-12-13T11:20:12.109338Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 401, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Nöykkiö", "sv": "Nöykis", "en": "Nöykkiö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67wm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.473201Z", "last_modified_time": "2023-12-13T11:20:12.473221Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 115, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Latokaski", "sv": "Ladusved", "en": "Latokaski" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le: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: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:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7ffq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/1342368209800153/1342368219800152/?ref=newsfeed", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-02T13:11:38.656399Z", "last_modified_time": "2024-02-02T13:11:38.656424Z", "date_published": "2024-02-02T12:53:00Z", "start_time": "2024-04-17T14:00:00Z", "end_time": "2024-04-17T15: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 keskustelemaan kirjoista ja niihin liittyvästä musiikista. ", "sv": "Kom och diskutera böcker och relaterad musik. ", "en": "Come and discuss books and related music. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lippulaivan_kirjasto/Tapahtumat/Lukudisko(281050)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Lippulaivabiblioteket/Evenemang/Lasdisco(281056)", "en": "https://www.helmet.fi/en-US/Libraries_and_services/Lippulaiva_Library/Events/Reading_Disco(281060)" }, "description": { "fi": "<p>Tule keskustelemaan kirjoista ja niihin liittyvästä musiikista. Osallistujat saavat esitellä omia vaikutuksen tehneitä lukukokemuksiaan ja ehdottaa luettuun liittyvää musiikkia kuunneltavaksi. Mikä sinuun teki vaikutuksen lukemassasi kirjassa? Miten ehdottamasi musiikki liittyy lukemaasi ja mikä siitä tekee kiinnostavaa? Voit tulla myös vain kuuntelemaan keskustelua tai inspiroivan musiikin kohdalla vaikka tanssimaan. Musiikki voi olla mainittuna kirjan tekstissä tai se voi liittyä kirjan kuvaamaan aikakauteen, ympäristöön, tunnelmaan tai johonkin muuhun. Lukudiskoja järjestetään eri teemoista ja eri kohderyhmille. Seuraa kirjaston tapahtumakalenterista, mikä olisi sinua kiinnostava aihe. Käyttämämme musiikkivalikoima on sama kuin Spotifyssa. Keskustelua vetävät suomeksi kirjastolaiset Annika Lehtinen ja Oskari Mänttäri Lippulaivan kirjaston Salongissa.</p><p>Kevään aiheet:</p><p>6.3. klo 17 - 18 romantiikka</p><p>21.3. klo 17 - 18 jännitys</p><p>17.4. klo 17 - 18 nuorten kirjat</p>", "sv": "<p>Kom och diskutera böcker och relaterad musik. Deltagarna kommer att uppmanas att dela med sig av sina egna erfarenheter av att läsa böcker som har gjort intryck på dem och att föreslå musik att lyssna till. Vad imponerade på dig med boken du läste? Hur relaterar musiken du föreslog till det du läste och vad gör den intressant? Du kan också bara komma och lyssna på diskussionen eller, när det gäller inspirerande musik, till och med dansa. Musiken kan nämnas i bokens text eller vara relaterad till den period, miljö, stämning eller något annat som boken beskriver. Läsdiskarna är organiserade kring olika teman och för olika målgrupper. Kolla bibliotekets evenemangskalender för att se vad du kan vara intresserad av. Vi använder samma musikurval som Spotify. Diskussionen leds på finska av bibliotekarierna Annika Lehtinen och Oskari Mänttäri i Salongen i Lippulaivans bibliotek.</p><p>Vårens teman:</p><p>6.3. 17 - 18 romantik</p><p>21.3. 17 - 18 spänning</p><p>17.4. 17 - 18 böcker för unga</p>", "en": "<p>Come and discuss books and related music. Participants will be invited to share their own experiences of reading books that have made an impact and to suggest music to listen to. What impressed you about the book you read? How does the music you suggested relate to what you read and what makes it interesting? You can also just come and listen to the discussion or, in the case of inspiring music, even dance. The music may be mentioned in the text of the book, or it may be related to the period, environment, atmosphere or something else that the book describes. The reading discos are organised around different themes and for different audiences. Check the library's events calendar to see what you might be interested in. We use the same music selection as Spotify. The discussion will be led in Finnish by librarians Annika Lehtinen and Oskari Mänttäri in the Lippulaiva Library Salonki.</p><p>Spring topics:</p><p>6.3. at 17 - 18 romance</p><p>21.3. at 17 - 18 suspense</p><p>17.4. at 17 - 18 Young people's books</p>" }, "name": { "fi": "Lukudisko", "sv": "Läsdisco", "en": "Reading Disco" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7e2q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aggwua7fai", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.109319Z", "last_modified_time": "2023-12-13T11:20:12.109338Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 401, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Nöykkiö", "sv": "Nöykis", "en": "Nöykkiö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67wm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.473201Z", "last_modified_time": "2023-12-13T11:20:12.473221Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 115, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Latokaski", "sv": "Ladusved", "en": "Latokaski" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le: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: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:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7ffq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/1342368209800153/1342368219800152/?ref=newsfeed", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-02T13:11:38.518334Z", "last_modified_time": "2024-02-02T13:11:38.518358Z", "date_published": "2024-02-02T12:53:00Z", "start_time": "2024-03-21T15:00:00Z", "end_time": "2024-03-21T16: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 keskustelemaan kirjoista ja niihin liittyvästä musiikista. ", "sv": "Kom och diskutera böcker och relaterad musik. ", "en": "Come and discuss books and related music. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lippulaivan_kirjasto/Tapahtumat/Lukudisko(281050)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Lippulaivabiblioteket/Evenemang/Lasdisco(281056)", "en": "https://www.helmet.fi/en-US/Libraries_and_services/Lippulaiva_Library/Events/Reading_Disco(281060)" }, "description": { "fi": "<p>Tule keskustelemaan kirjoista ja niihin liittyvästä musiikista. Osallistujat saavat esitellä omia vaikutuksen tehneitä lukukokemuksiaan ja ehdottaa luettuun liittyvää musiikkia kuunneltavaksi. Mikä sinuun teki vaikutuksen lukemassasi kirjassa? Miten ehdottamasi musiikki liittyy lukemaasi ja mikä siitä tekee kiinnostavaa? Voit tulla myös vain kuuntelemaan keskustelua tai inspiroivan musiikin kohdalla vaikka tanssimaan. Musiikki voi olla mainittuna kirjan tekstissä tai se voi liittyä kirjan kuvaamaan aikakauteen, ympäristöön, tunnelmaan tai johonkin muuhun. Lukudiskoja järjestetään eri teemoista ja eri kohderyhmille. Seuraa kirjaston tapahtumakalenterista, mikä olisi sinua kiinnostava aihe. Käyttämämme musiikkivalikoima on sama kuin Spotifyssa. Keskustelua vetävät suomeksi kirjastolaiset Annika Lehtinen ja Oskari Mänttäri Lippulaivan kirjaston Salongissa.</p><p>Kevään aiheet:</p><p>6.3. klo 17 - 18 romantiikka</p><p>21.3. klo 17 - 18 jännitys</p><p>17.4. klo 17 - 18 nuorten kirjat</p>", "sv": "<p>Kom och diskutera böcker och relaterad musik. Deltagarna kommer att uppmanas att dela med sig av sina egna erfarenheter av att läsa böcker som har gjort intryck på dem och att föreslå musik att lyssna till. Vad imponerade på dig med boken du läste? Hur relaterar musiken du föreslog till det du läste och vad gör den intressant? Du kan också bara komma och lyssna på diskussionen eller, när det gäller inspirerande musik, till och med dansa. Musiken kan nämnas i bokens text eller vara relaterad till den period, miljö, stämning eller något annat som boken beskriver. Läsdiskarna är organiserade kring olika teman och för olika målgrupper. Kolla bibliotekets evenemangskalender för att se vad du kan vara intresserad av. Vi använder samma musikurval som Spotify. Diskussionen leds på finska av bibliotekarierna Annika Lehtinen och Oskari Mänttäri i Salongen i Lippulaivans bibliotek.</p><p>Vårens teman:</p><p>6.3. 17 - 18 romantik</p><p>21.3. 17 - 18 spänning</p><p>17.4. 17 - 18 böcker för unga</p>", "en": "<p>Come and discuss books and related music. Participants will be invited to share their own experiences of reading books that have made an impact and to suggest music to listen to. What impressed you about the book you read? How does the music you suggested relate to what you read and what makes it interesting? You can also just come and listen to the discussion or, in the case of inspiring music, even dance. The music may be mentioned in the text of the book, or it may be related to the period, environment, atmosphere or something else that the book describes. The reading discos are organised around different themes and for different audiences. Check the library's events calendar to see what you might be interested in. We use the same music selection as Spotify. The discussion will be led in Finnish by librarians Annika Lehtinen and Oskari Mänttäri in the Lippulaiva Library Salonki.</p><p>Spring topics:</p><p>6.3. at 17 - 18 romance</p><p>21.3. at 17 - 18 suspense</p><p>17.4. at 17 - 18 Young people's books</p>" }, "name": { "fi": "Lukudisko", "sv": "Läsdisco", "en": "Reading Disco" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7fai/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aggwua7fda", "has_user_editable_resources": false, "location": { "id": "tprek:63115", "has_user_editable_resources": false, "data_source": "tprek", "publisher": "ahjo:u021800", "divisions": [ { "type": "muni", "ocd_id": "ocd-division/country:fi/kunta:espoo", "municipality": null, "name": { "fi": "Espoo", "sv": "Esbo" } } ], "created_time": "2023-08-15T16:21:47.874219Z", "last_modified_time": "2024-04-09T05:09:51.671564Z", "custom_data": null, "email": "kirjasto.lippulaiva@espoo.fi", "contact_type": null, "address_region": null, "postal_code": "02320", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": true, "n_events": 2568, "image": 10314, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.652107, 60.150066 ] }, "telephone": { "fi": "+358 9 8163 5097" }, "street_address": { "fi": "Espoonlahdenkatu 8", "sv": "Esboviksgatan 8", "en": "Espoonlahdenkatu 8" }, "address_locality": { "fi": "Espoo", "sv": "Esbo", "en": "Espoo" }, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "sv": "https://helmet.finna.fi/OrganisationInfo/Home#86685", "en": "https://helmet.finna.fi/OrganisationInfo/Home#86685" }, "description": null, "name": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaivabiblioteket", "en": "Lippulaiva library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "id": "espoo_le:agggfz66fq", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.081778Z", "last_modified_time": "2023-12-13T11:20:12.081796Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2648, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Kivenlahti", "sv": "Stensvik", "en": "Kivenlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66hi", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.096292Z", "last_modified_time": "2023-12-13T11:20:12.096316Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2638, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Espoonlahti", "sv": "Esboviken", "en": "Espoonlahti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66i4", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.109319Z", "last_modified_time": "2023-12-13T11:20:12.109338Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 401, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Nöykkiö", "sv": "Nöykis", "en": "Nöykkiö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz66ky", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.123308Z", "last_modified_time": "2023-12-13T11:20:12.123326Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2428, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Soukka", "sv": "Sökö", "en": "Soukka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le:agggfz67wm", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-12-13T11:20:12.473201Z", "last_modified_time": "2023-12-13T11:20:12.473221Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 115, "image": null, "data_source": "espoo_le", "publisher": null, "replaced_by": null, "name": { "fi": "Latokaski", "sv": "Ladusved", "en": "Latokaski" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "espoo_le: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: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:p1808", "has_user_editable_resources": false, "alt_labels": [ "säveltaide", "musikkonst", "tonkonst" ], "created_time": "2023-08-16T05:19:45.424900Z", "last_modified_time": "2023-08-16T05:19:45.425071Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 2558, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "musiikki", "sv": "musik", "en": "music" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p2787", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.135734Z", "last_modified_time": "2023-08-16T05:19:44.135775Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 11943, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjastot", "sv": "bibliotek", "en": "libraries" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p360", "has_user_editable_resources": false, "alt_labels": [], "created_time": "2023-08-16T05:19:44.191631Z", "last_modified_time": "2023-08-16T05:19:44.191650Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 7187, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kulttuuritapahtumat", "sv": "kulturevenemang", "en": "cultural events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p8113", "has_user_editable_resources": false, "alt_labels": [ "maailmankirjallisuus", "världslitteratur" ], "created_time": "2023-08-16T05:19:49.026380Z", "last_modified_time": "2023-08-16T05:19:49.026398Z", "aggregate": false, "deprecated": false, "has_upcoming_events": true, "n_events": 4029, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "kirjallisuus", "sv": "litteratur", "en": "literature" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7ffq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/events/1342368209800153/1342368219800152/?ref=newsfeed", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-02T13:11:38.336123Z", "last_modified_time": "2024-02-02T13:11:38.336146Z", "date_published": "2024-02-02T12:53:00Z", "start_time": "2024-03-06T15:00:00Z", "end_time": "2024-03-06T16: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 keskustelemaan kirjoista ja niihin liittyvästä musiikista. ", "sv": "Kom och diskutera böcker och relaterad musik. ", "en": "Come and discuss books and related music. " }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Lippulaivan_kirjasto/Tapahtumat/Lukudisko(281050)", "sv": "https://www.helmet.fi/sv-FI/Bibliotek_och_tjanster/Lippulaivabiblioteket/Evenemang/Lasdisco(281056)", "en": "https://www.helmet.fi/en-US/Libraries_and_services/Lippulaiva_Library/Events/Reading_Disco(281060)" }, "description": { "fi": "<p>Tule keskustelemaan kirjoista ja niihin liittyvästä musiikista. Osallistujat saavat esitellä omia vaikutuksen tehneitä lukukokemuksiaan ja ehdottaa luettuun liittyvää musiikkia kuunneltavaksi. Mikä sinuun teki vaikutuksen lukemassasi kirjassa? Miten ehdottamasi musiikki liittyy lukemaasi ja mikä siitä tekee kiinnostavaa? Voit tulla myös vain kuuntelemaan keskustelua tai inspiroivan musiikin kohdalla vaikka tanssimaan. Musiikki voi olla mainittuna kirjan tekstissä tai se voi liittyä kirjan kuvaamaan aikakauteen, ympäristöön, tunnelmaan tai johonkin muuhun. Lukudiskoja järjestetään eri teemoista ja eri kohderyhmille. Seuraa kirjaston tapahtumakalenterista, mikä olisi sinua kiinnostava aihe. Käyttämämme musiikkivalikoima on sama kuin Spotifyssa. Keskustelua vetävät suomeksi kirjastolaiset Annika Lehtinen ja Oskari Mänttäri Lippulaivan kirjaston Salongissa.</p><p>Kevään aiheet:</p><p>6.3. klo 17 - 18 romantiikka</p><p>21.3. klo 17 - 18 jännitys</p><p>17.4. klo 17 - 18 nuorten kirjat</p>", "sv": "<p>Kom och diskutera böcker och relaterad musik. Deltagarna kommer att uppmanas att dela med sig av sina egna erfarenheter av att läsa böcker som har gjort intryck på dem och att föreslå musik att lyssna till. Vad imponerade på dig med boken du läste? Hur relaterar musiken du föreslog till det du läste och vad gör den intressant? Du kan också bara komma och lyssna på diskussionen eller, när det gäller inspirerande musik, till och med dansa. Musiken kan nämnas i bokens text eller vara relaterad till den period, miljö, stämning eller något annat som boken beskriver. Läsdiskarna är organiserade kring olika teman och för olika målgrupper. Kolla bibliotekets evenemangskalender för att se vad du kan vara intresserad av. Vi använder samma musikurval som Spotify. Diskussionen leds på finska av bibliotekarierna Annika Lehtinen och Oskari Mänttäri i Salongen i Lippulaivans bibliotek.</p><p>Vårens teman:</p><p>6.3. 17 - 18 romantik</p><p>21.3. 17 - 18 spänning</p><p>17.4. 17 - 18 böcker för unga</p>", "en": "<p>Come and discuss books and related music. Participants will be invited to share their own experiences of reading books that have made an impact and to suggest music to listen to. What impressed you about the book you read? How does the music you suggested relate to what you read and what makes it interesting? You can also just come and listen to the discussion or, in the case of inspiring music, even dance. The music may be mentioned in the text of the book, or it may be related to the period, environment, atmosphere or something else that the book describes. The reading discos are organised around different themes and for different audiences. Check the library's events calendar to see what you might be interested in. We use the same music selection as Spotify. The discussion will be led in Finnish by librarians Annika Lehtinen and Oskari Mänttäri in the Lippulaiva Library Salonki.</p><p>Spring topics:</p><p>6.3. at 17 - 18 romance</p><p>21.3. at 17 - 18 suspense</p><p>17.4. at 17 - 18 Young people's books</p>" }, "name": { "fi": "Lukudisko", "sv": "Läsdisco", "en": "Reading Disco" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aggwua7fda/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggwtgazxa", "has_user_editable_resources": false, "location": { "id": "tprek:64635", "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:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } } ], "created_time": "2023-08-15T16:23:53.187779Z", "last_modified_time": "2024-10-20T05:10:00.743732Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00260", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 4, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.930498, 60.1808 ] }, "telephone": null, "street_address": { "fi": "Hesperianpuisto", "sv": "Hesperiaparken", "en": "Hesperianpuisto" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://oopperabaletti.fi/", "sv": "https://oopperabaletti.fi/", "en": "https://oopperabaletti.fi/" }, "description": { "fi": "Oopperan amfiteatteri sijaitsee Hesperian puistossa, Kansallisoopperan takana.", "en": "The National Opera amphitheatre is located right behind the Finnish National Opera building, in Hesperianpuisto park." }, "name": { "fi": "Oopperan amfiteatteri", "en": "Opera amphitheatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?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: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:p38424", "has_user_editable_resources": false, "alt_labels": [ "välbefinnande", "well-being (physical)", "hyvinvointi (fyysinen)", "hyvinvointi (terveydellinen)", "fysiskt välmående", "välbefinnande (fysiskt)", "välmående (fysiskt)" ], "created_time": "2023-08-16T05:18:40.898852Z", "last_modified_time": "2023-08-16T05:18:40.898869Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 11, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "fyysinen hyvinvointi", "sv": "fysiskt välbefinnande", "en": "physical well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7525, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-02T11:33:09.532316Z", "last_modified_time": "2024-02-02T11:33:09.532334Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=4aa39330-156f-4e63-a902-4b57e0b085dd&Timestamp=638424595706698150&Full=true", "name": "Kuvateksti MKtest 02022024", "cropping": "", "photographer_name": "Simo Sattuma", "alt_text": "Kuvan alt-teksti MKtest 02022024", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7525/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Videon nimi MKtest 02022024", "url": "https://www.asdf.fi", "alt_text": "Videon alt-teksti MKtest 02022024" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-02T11:33:12.259511Z", "last_modified_time": "2024-02-02T11:33:12.259530Z", "date_published": "2024-02-02T06:53:47Z", "start_time": "2024-02-05T12:00:00Z", "end_time": "2024-02-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 50, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-01-29T08:00:00+02:00", "enrolment_end_time": "2024-02-02T16:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC FI", "en": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842" }, "description": { "fi": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC FI</div></div>", "en": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC EN</div></div>" }, "name": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test", "en": "MKtest 020220241615 D365 to LE 10_video-url-test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki in Finnish", "en": "Business Helsinki in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggwtgazxa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggwr5yn3m", "has_user_editable_resources": false, "location": { "id": "tprek:64635", "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:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:taka-töölö", "municipality": "Helsinki", "name": { "fi": "Taka-Töölö", "sv": "Bortre Tölö" } } ], "created_time": "2023-08-15T16:23:53.187779Z", "last_modified_time": "2024-10-20T05:10:00.743732Z", "custom_data": null, "email": null, "contact_type": null, "address_region": null, "postal_code": "00260", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 4, "image": null, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.930498, 60.1808 ] }, "telephone": null, "street_address": { "fi": "Hesperianpuisto", "sv": "Hesperiaparken", "en": "Hesperianpuisto" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://oopperabaletti.fi/", "sv": "https://oopperabaletti.fi/", "en": "https://oopperabaletti.fi/" }, "description": { "fi": "Oopperan amfiteatteri sijaitsee Hesperian puistossa, Kansallisoopperan takana.", "en": "The National Opera amphitheatre is located right behind the Finnish National Opera building, in Hesperianpuisto park." }, "name": { "fi": "Oopperan amfiteatteri", "en": "Opera amphitheatre" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64635/?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: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:p38424", "has_user_editable_resources": false, "alt_labels": [ "välbefinnande", "well-being (physical)", "hyvinvointi (fyysinen)", "hyvinvointi (terveydellinen)", "fysiskt välmående", "välbefinnande (fysiskt)", "välmående (fysiskt)" ], "created_time": "2023-08-16T05:18:40.898852Z", "last_modified_time": "2023-08-16T05:18:40.898869Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 11, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "fyysinen hyvinvointi", "sv": "fysiskt välbefinnande", "en": "physical well-being" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api", "@context": "http://schema.org", "@type": "Keyword" }, { "id": "yso:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7515, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-02-02T08:37:10.591796Z", "last_modified_time": "2024-02-02T08:37:10.591815Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=4aa39330-156f-4e63-a902-4b57e0b085dd&Timestamp=638424595706698150&Full=true", "name": "Kuvateksti MKtest 02022024", "cropping": "", "photographer_name": "Simo Sattuma", "alt_text": "Kuvan alt-teksti MKtest 02022024", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7515/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [ { "name": "Videon nimi MKtest 02022024", "url": "https://www.asdf.fi", "alt_text": "Videon alt-teksti MKtest 02022024" } ], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" }, { "@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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38424/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-02-02T08:37:17.927068Z", "last_modified_time": "2024-02-02T08:37:17.927088Z", "date_published": "2024-02-02T06:53:47Z", "start_time": "2024-02-05T12:00:00Z", "end_time": "2024-02-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 50, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 20, "minimum_attendee_capacity": 10, "enrolment_start_time": "2024-01-29T08:00:00+02:00", "enrolment_end_time": "2024-02-02T16:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC FI", "en": "MKtest 020220241615 D365 to LE 10_video-url-test SHORT DESC en" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ru": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "zh_hans": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842", "ar": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/424ccac7-14a6-ee11-be37-000d3ab47c65?readableEventId=MKtest_020220241615_D365_to_LE_10_video-url-test2052702842" }, "description": { "fi": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC FI</div></div>", "en": "<div><div>MKtest 020220241615 <strong>D365 </strong>to LE 10_video-url-test LONG DESC EN</div></div>" }, "name": { "fi": "MKtest 020220241615 D365 to LE 10_video-url-test", "en": "MKtest 020220241615 D365 to LE 10_video-url-test EN" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Business Helsinki in Finnish", "en": "Business Helsinki in English" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggwr5yn3m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:aggwrz6buy", "has_user_editable_resources": false, "location": { "id": "tprek:12", "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:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } }, { "type": "sub_district", "ocd_id": "ocd-division/country:fi/kunta:helsinki/osa-alue:kannelmäki", "municipality": "Helsinki", "name": { "fi": "Kannelmäki", "sv": "Gamlas" } }, { "type": "neighborhood", "ocd_id": "ocd-division/country:fi/kunta:helsinki/kaupunginosa:kaarela", "municipality": "Helsinki", "name": { "fi": "Kaarela", "sv": "Kårböle" } } ], "created_time": "2023-08-15T08:09:16.604313Z", "last_modified_time": "2026-01-30T12:09:16.930282Z", "custom_data": null, "email": "lp.trumpetti@hel.fi", "contact_type": null, "address_region": null, "postal_code": "00420", "post_office_box_num": null, "address_country": null, "deleted": false, "has_upcoming_events": false, "n_events": 30, "image": 7591, "parent": null, "replaced_by": null, "position": { "type": "Point", "coordinates": [ 24.866907, 60.238144 ] }, "telephone": { "fi": "+358 9 310 41632" }, "street_address": { "fi": "Trumpettikuja 5", "sv": "Trumpetgränden 5", "en": "Trumpettikuja 5" }, "address_locality": { "fi": "Helsinki", "sv": "Helsingfors", "en": "Helsinki" }, "info_url": { "fi": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "sv": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti", "en": "https://www.hel.fi/fi/kasvatus-ja-koulutus/leikkipuisto-trumpetti" }, "description": { "fi": "Leikkipuisto Trumpetti sijaitsee Kannelmäessä hyvien kulkuyhteyksien varrella. Leikkipuisto on turvallinen ajanviettopaikka, jossa järjestetään monipuolista toimintaa vauva- ja lapsiperheille sekä koululaisille. Leikkipuistossa on mahdollisuus tutustua muihin lapsiperheisiin ja lapset saavat leikkiseuraa. Aikuiset ja lapset voivat osallistua toiminnan suunnitteluun ja toteutukseen yhdessä ohjaajien kanssa. Leikkipuistossa on mahdollisuus omien ruokien lämmittämiseen ja kahvin/teen keittoon. Toimintamme on maksutonta ja perustuu Helsingin varhaiskasvatussuunnitelmaan.", "sv": "Lekparkerna erbjuder en trygg plats för fritidsaktiviteter och meningsfull sysselsättning för familjer med spädbarn, barn och skolelever. Verksamheten är finskspråkig. I lekparken har vårdnadshavarna och föräldrarna möjlighet att lära känna andra barnfamiljer och barnen har leksällskap. Barn och vuxna kan delta i planeringen och genomförandet av verksamheten tillsammans med ledarna. Du kan värma upp din egen mat och koka kaffe eller te. Vår verksamhet är avgiftsfri och bygger på planen för småbarnspedagogik i Helsingfors." }, "name": { "fi": "Leikkipuisto Trumpetti", "sv": "Lekparken Trumpeten", "en": "Playground Trumpetti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api", "@context": "http://schema.org", "@type": "Place" }, "keywords": [ { "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: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: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: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:p5590", "has_user_editable_resources": false, "alt_labels": [ "fullvuxna" ], "created_time": "2023-08-16T05:17:14.834826Z", "last_modified_time": "2023-08-16T05:17:14.834850Z", "aggregate": false, "deprecated": false, "has_upcoming_events": false, "n_events": 4523, "image": null, "data_source": "yso", "publisher": "hy:kansalliskirjasto", "replaced_by": null, "name": { "fi": "aikuiset", "sv": "vuxna", "en": "adults" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api", "@context": "http://schema.org", "@type": "Keyword" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": { "fi": "Hintatieto" }, "price": { "fi": "55€" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 7410, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-29T13:43:53.120153Z", "last_modified_time": "2024-01-29T13:43:53.120171Z", "url": "https://hel-crm-test.crm4.dynamics.com/Image/download.aspx?Entity=msevtmgt_event&Attribute=dg_event_picture&Id=20cfe293-c7f1-4d8b-9170-558ef6e7053b&Timestamp=638417694742259293", "name": "coolpicturename", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7410/?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:p11617/?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:p16485/?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:p5590/?format=api" } ], "created_time": "2024-02-02T08:20:35.381215Z", "last_modified_time": "2024-02-02T08:20:35.381236Z", "date_published": "2024-01-19T07:50:30Z", "start_time": "2023-09-26T06:00:00Z", "end_time": "2024-09-24T02:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 14, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 49, "minimum_attendee_capacity": 34, "enrolment_start_time": "2024-01-10T08:00:00+02:00", "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "short desc", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "info_url": null, "description": { "fi": "<div><div>MKtest 240120240830 to LE asdf 12345 asdf 12345 LONG DESC SWE</div></div>", "ar": "<div><div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></div>\n<div></div>\n<div></div>\n<div><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span><br></div>\n<div></div>\n<div><strong><span style=\"language:fi\"><span style=\"unicode-bidi:embed\"><span style=\"word-break:normal\"><span style=\"punctuation-wrap:hanging\"><span style=\"font-size:16.0pt\"><span style=\"font-family:Arial\"><span style=\"color:black\"><span style=\"language:ar-DZ\">من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة</span></span></span></span></span></span></span></span></strong><br></div></div>" }, "name": { "fi": "Outin testitapahtuma 101", "sv": "", "en": "", "ru": "", "zh_hans": "", "ar": "من خلال جلسة المعلومات، سوف تحصل على معلومات مفيدة حول بدء شركة" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:aggwrz6buy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }