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
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 ordering is descending order by -last_modified_time
. 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&hide_recurring_children=true&page=212
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=213", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=211" }, "data": [ { "id": "espoo_le:aghvejbxde", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-07T07:22:15.442105Z", "last_modified_time": "2024-05-07T07:22:15.442137Z", "date_published": null, "start_time": "2024-05-24T13:00:00Z", "end_time": "2024-05-24T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "description": { "fi": "<p>Tervetuloa keskustelemaan kirjoista ja kirjallisuudesta<br>Toivomme mukaan kaikenikäisiä lukijoita. Tapaamme kerran kuussa Sellon kirjastossa. Lämpimästi tervetuloa!</p>", "sv": "<p>Välkommen att diskutera böcker och litteratur på finska</p>", "en": "<p>Welcome to discuss books and literature in Finnish</p>" }, "name": { "fi": "Sellon kirjaston lukuporinat", "sv": "Sello bibliotek läsecirkel", "en": "Sello Library's reading club" }, "short_description": { "fi": "Tervetuloa keskustelemaan kirjoista ja kirjallisuudesta", "sv": "Välkommen att diskutera böcker och litteratur på finska", "en": "Welcome to discuss books and literature in Finnish" }, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghvejbxde/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghu3wo3pi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu3wo22i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu3wo3c4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu3wo3iq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu3wo3l4/?format=api" } ], "images": [ { "id": 151005, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-06T06:47:46.895221Z", "last_modified_time": "2024-05-06T06:47:46.895250Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/satuhetki.png", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "aikuinen lukee kirjaa lapsille", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-05-06T11:59:55.754317Z", "last_modified_time": "2024-05-06T11:59:55.754340Z", "date_published": "2024-05-06T11:51:00Z", "start_time": "2024-09-02T14:00:00Z", "end_time": "2024-12-02T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Espanjankielinen satuhetki / Bienvenidos a nuestro cuenta- cuentos, un espacio de aprendizaje y cultura hispanoamericano.</p>", "sv": "<p>Sagor på spanska</p>", "en": "<p>Stories in Spanish</p>" }, "name": { "fi": "Espanjankielinen satuhetki \\ Cuentacuentos en castellano", "sv": "Sagor på spanska", "en": "Stories in Spanish" }, "short_description": { "fi": "Espanjankielinen satuhetki ", "sv": "Sagor på spanska", "en": "Stories in Spanish" }, "location_extra_info": { "fi": "Lastenmaa/Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu3wo3pi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghu3wo3ta", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-06T11:53:41.609782Z", "last_modified_time": "2024-05-06T11:53:41.609812Z", "date_published": "2024-05-06T07:29:00Z", "start_time": "2024-05-06T08:45:00Z", "end_time": "2024-05-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "en": "https://taikajalohaikara.myportfolio.com/" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Plastimals-taidenäyttely sukeltaa värikkään muovin ja eläinten sekä niiden ympäristövaikutusten väliseen moniulotteiseen suhteeseen.</p><p>Modernissa maailmassamme muovi on yleinen materiaali joka muokkaa sekä elämäämme että ympäristöämme meidän kaikkien ympärillämme. Esimerkiksi lasten muoviset lelueläimet ovat pitkään olleet viattomuuden ja ilon symboli. Kuitenkin niiden kirkkaiden sävyjen alla piilee synkempi totuus - muovisaasteen ympäristövaikutukset.</p><p>Taidenäyttely kutsuu sinut tutkimaan tätä kysymystä. Näyttely juhlii synteettisten muoviolentojen kauneutta ja värikkyyttä, samalla haastaen meitä kohtaamaan muovin ekologisen jalanjäljen.</p>", "sv": "<p>Välkommen att besöka Taika Jalohaikaras utställning \"Plastimals\" i Entressebiblioteket under tiden 6.-26.5.2024. Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>The Plastimals art exhibition delves into the multifaceted relationship between colorful plastic and animals as well as their environmental impact.</p><p>In our modern world, plastic is a common material that shapes both our lives and the environment around us. For example, plastic toy animals have long been a symbol of innocence and joy. However, beneath their bright hues lies a darker truth - the environmental impact of plastic pollution.</p><p>The art exhibition invites you to explore this issue. It celebrates the beauty and vibrancy of synthetic plastic creatures while also challenging us to confront the ecological footprint of plastic.</p>" }, "name": { "fi": "Taika Jalohaikara: Plastimals 6.-26.5.2024", "sv": "Taika Jalohaikara: Plastimals 6.-26.5.2024", "en": "Taika Jalohaikara: Plastimals 6.-26.5.2024" }, "short_description": { "fi": "\"Plastimals - muovieläinten karnevaali\" Entressen kirjaston Valatori -seinällä 6.-26.5.2024.", "sv": "Taika Jalohaikaras utställning \"Plastimals\" i Entressebiblioteket under tiden 6.-26.5.2024.", "en": "Art exhibition \"Plastimals - The Plastic Carnival of the Animals\" by Taika Jalohaikara in Entresse Library during 6.-26.5.2024." }, "location_extra_info": { "fi": "Valatori -seinä", "sv": "Valatori -seinä", "en": "Valatori -seinä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu3wo3ta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghu2ngppi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-06T08:49:40.899898Z", "last_modified_time": "2024-05-06T10:22:29.754478Z", "date_published": "2024-05-06T08:10:00Z", "start_time": "2024-05-06T08:45:00Z", "end_time": "2024-05-25T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://www.samanarvoinenelamani.org", "sv": "https://www.samanarvoinenelamani.org/sv", "en": "https://www.samanarvoinenelamani.org/en" }, "provider_contact_info": null, "provider": { "fi": "Suomen Caritas", "sv": "Suomen Caritas", "en": "Suomen Caritas" }, "description": { "fi": "<p>Tervetuloa tutustumaan bangladeshilaiseen arkeen ja siirtotyöläisen haasteisiin. GMB Akash on ikuistanut yhteiskunnan marginaalissa elävien ihmisten elämää jo yli 20 vuoden ajan. Näyttely liittyy Suomen Caritaksen toteuttamaan kehitysyhteistyöhankkeeseen.</p><p>Samanarvoinen elämäni -näyttelyn avajaiset Entressen kirjaston Estradilla tiistaina 14.5.2024 klo 17.30-19.00. </p>", "sv": "<p>Välkommen att besöka GMB Akashis utställning \"Mitt jämlika liv\" i Entressebiblioteket under tiden 6.-25.5.2024. Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"My equal life\" by GMB Akash in Entresse Library during 6.-25.5.2024. Welcome!</p>" }, "name": { "fi": "GMB Akash: Samanarvoinen elämäni 6.-25.5.2024", "sv": "GMB Akash: Mitt jämlika liv 6.-25.5.2024", "en": "GMB Akash: My equal life 6.-25.5.2024" }, "short_description": { "fi": "Samanarvoinen elämäni -valokuvanäyttely Entressen kirjaston Galleria Betonissa 6.-25.5.2024.", "sv": "GMB Akashis utställning \"Mitt jämlika liv\" i Entressebiblioteket under tiden 6.-25.5.2024.", "en": "Art exhibition \"My equal life\" by GMB Akash in Entresse Library during 6.-25.5.2024." }, "location_extra_info": { "fi": "Galleria Betoni", "sv": "Galleria Betoni", "en": "Galleria Betoni" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu2ngppi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63117", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 €", "sv": "20 €", "en": "20 €" }, "info_url": { "fi": "https://www.lippu.fi/event/kanneltalo-nothing-for-the-money-plays-dire-straits-kanneltalo-18436597/", "sv": "https://www.lippu.fi/event/kanneltalo-nothing-for-the-money-plays-dire-straits-kanneltalo-18436597/", "en": "https://www.lippu.fi/event/kanneltalo-nothing-for-the-money-plays-dire-straits-kanneltalo-18436597/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 20864, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-22T11:14:56.239416Z", "last_modified_time": "2024-03-22T11:14:56.239447Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739632.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/20864/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-22T11:14:56.194958Z", "last_modified_time": "2024-05-06T08:16:01.691817Z", "date_published": null, "start_time": "2024-05-10T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5627FF4905FDE634F1E99139991FDD44/Nothing_for_Money_plays_Dire_Straits", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5627FF4905FDE634F1E99139991FDD44/Nothing_for_Money_plays_Dire_Straits", "en": "http://www.kanneltalo.fi/en/events/event/5627FF4905FDE634F1E99139991FDD44/Nothing_for_Money_plays_Dire_Straits" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Nothing for Money esittää: Ilta Dire Straits -yhtyeen musiikin parissa.</p><p>Nothing for Money on brittiläisen Dire Straits -yhtyeen musiikkia esittävä kokoonpano. 1970-luvun lopulla, keskellä punk-kuumetta perustettu Dire Straits kipusi vastavirtamusiikillaan muutamassa vuodessa Lontoon pubeista maailman suosituimpien rock-yhtyeiden eliittiin. Yhtyeellä oli oma tunnistettava soundinsa, eikä vähiten kitaristilauluntekijä Mark Knopflerin ansiosta.</p><p>Nothing for Money esittää pieteetillä erityisesti Dire Straitsin ensimmäisten albumien musiikkia. Monipuolisessa kattauksessa on paljon nautittavaa suoraviivaisista rock-vedoista progressiivisiin taideteoksiin. Konsertissa kuullaan monia tuttuja klassikoita sekä livenä harvemmin kuultuja helmiä.</p><p>Yhtyeessä musisoivat:<br>Juha Ahvenainen – koskettimet<br>Mikko Huotari – basso<br>Susan Jaser – laulu, perkussiot<br>Joonas Metsäniemi – kitarat<br>Jukka Metsäniemi – kitarat, laulu<br>Nicke von Weissenberg - rummut</p><p>Kesto: 2 t 30 min (sis. väliaika)</p>", "sv": "<p>Nothing for Money presenterar: En kväll med Dire Straits-bandets musik.</p><p>Dire Straits var ett band som lotsades av gitarristen Mark Knopfler med start i Londons pubar, som sedan växte till ett av världens största rockband under 80- och 90-talen. Nothing for Money spelar Dire Straits-klassiker med stil och skicklighet enligt de ursprungliga konsertarrangemangen.</p>", "en": "<p>Nothing for Money presents: An evening with the music of Dire Straits</p><p>Dire Straits was a band led by guitarist Mark Knopfler that grew from London’s pubs into one of the world’s biggest rock bands in the 1980s and 1990s. Nothing for Money plays Dire Straits classics with style and skill, following the original concert arrangements.</p>" }, "name": { "fi": "Nothing for Money plays Dire Straits", "sv": "Nothing for Money plays Dire Straits", "en": "Nothing for Money plays Dire Straits" }, "short_description": { "fi": "Nothing for Money esittää: Ilta Dire Straits -yhtyeen musiikin parissa.", "sv": "Nothing for Money presenterar: En kväll med Dire Straits-bandets musik.", "en": "Nothing for Money presents: An evening with the music of Dire Straits" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63117/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghu2ahryi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-06T08:02:07.863583Z", "last_modified_time": "2024-05-06T08:02:07.863607Z", "date_published": null, "start_time": "2024-06-11T11:00:00Z", "end_time": "2024-06-11T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Valolaatikkopajassa pääsee tekemään revontulimaisia varjoasetelmia. Värikkäät avaimenperävalaisimet suunnataan mukeihin ja leikkieläimiin jolloin valot muodostavat kiehtovia varjoja laatikon sisään. Paja toimii non-stop -periaatteella eikä sinne ole ikärajaa. Vetäjänä valoilmaisun medianomi Jukka Laine.</p>", "sv": "<p>I ljuslådeverkstaden kan du göra norrskensliknande skuggarrangemang. Färgglada nyckelringljus riktar sig till muggar och leksaksdjur, vilket gör att lamporna skapar fascinerande skuggor inuti lådan. Verkstaden arbetar på oavbrutet basis och det finns ingen åldersgräns. Leds av Jukka Laine, medieexpert inom lätta uttryck.</p>", "en": "<p>In the light box workshop, you can make aurora-like shadow arrangements. Colorful Keychain lights are aimed at mugs and toy animals, causing the lights to create fascinating shadows inside the box. The workshop works on a non-stop basis and there is no age limit. Led by Jukka Laine, media expert in light expression.</p>" }, "name": { "fi": "Valopaja lapsille", "sv": "Lättverkstad för barn", "en": "Light workshop for children" }, "short_description": { "fi": "Valolaatikkopajassa pääsee tekemään revontulimaisia varjoasetelmia.", "sv": "I ljuslådeverkstaden kan du göra norrskensliknande skuggarrangemang.", "en": "In the light box workshop, you can make aurora-like shadow arrangements." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghu2ahryi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:a9094da1-9f7e-46dd-87cb-a66665", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:12/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kuvakentttestaus_2642024_HW1759630424" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 150691, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-19T09:44:42.595251Z", "last_modified_time": "2024-04-19T09:44:42.595275Z", "name": "kuvatekstiä. Käyttö rajattu yhden tapahtuman yhteyteen.", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/633d0f98-51fd-ee11-a1fe-000d3adbeb68", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "alt-tekstiä", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150691/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" } ], "created_time": "2024-05-06T07:04:03.771206Z", "last_modified_time": "2024-05-06T07:44:08.852873Z", "date_published": "2024-04-26T08:17:54Z", "start_time": "2024-06-26T10:26:00Z", "end_time": "2024-06-30T12:26:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-05-26T10:00:00+03:00", "enrolment_end_time": "2024-05-26T14:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "a" }, "description": { "fi": "<div><div>a</div></div>" }, "name": { "fi": "Kattotestaus 6.5.2024 HW" }, "short_description": { "fi": "a" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:a9094da1-9f7e-46dd-87cb-a66665/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghuzrxp5m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-06T06:15:57.466248Z", "last_modified_time": "2024-05-06T06:17:03.268089Z", "date_published": null, "start_time": "2024-05-06T06:15:00Z", "end_time": "2024-05-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Jenny Holmbergin taidenäyttely \"Satumetsän tarinat\" Entressen kirjastossa 6.5.-26.5.2024. Tervetuloa!</p><p>Olen 46-vuotias taiteilija ja palvelualan ammattilainen. Koulutukseltani olen matkailumerkonomi. Minulla on kolme ihanaa lasta ja elän kiireisiä ruuhkavuosia. Olen liekeissä. Kaksi vuotta sitten annoin luovuudelle vallan ja suin hurjan kipinän ja palon maalata. Ideoita ja inspiraatiota löydän kaikkialta. Rakastan maalaamista!</p><p>Olen koko ikäni tehnyt kaikenlaisia luovia töitä, olen aina rakastanut käsillä tekemistä. Olen käynyt kursseja 26 vuoden ajan: typografia-, posliinimaalaus-, piirrustus-, valokuvaus-, väännetään rautalangasta- ja 5 vuotta keramiikkakurssilla (opettaja Arja Karjalainen). Olen myös suunnitellut ja tehnyt koruja.</p><p>Lisää teoksiani löydät instagramista @jennyh4art</p><p>Teen myös tilaustöitä, ole rohkeasti yhteydessä minuun: jenny.holmeberg@hotmail.com</p>", "sv": "<p>Välkommen att besöka Jenny Holmbergs utställning \"Satumetsän tarinat\" i Entressebiblioteket under tiden 6.5.-26.5.2024. Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Art exhibition \"Satumetsän tarinat\" by Jenny Holmberg in Entresse Library during 6.5.-26.5.2024. Welcome!</p>" }, "name": { "fi": "Jenny Holmberg: Satumetsän tarinat 6.5.-26.5.2024", "sv": "Jenny Holmberg: Satumetsän tarinat 6.5.-26.5.2024", "en": "Jenny Holmberg: Satumetsän tarinat 6.5.-26.5.2024" }, "short_description": { "fi": "Jenny Holmbergin taidenäyttely \"Satumetsän tarinat\" Entressen kirjastossa 6.5.-26.5.2024. ", "sv": "Jenny Holmbergs utställning \"Satumetsän tarinat\" i Entressebiblioteket under tiden 6.5.-26.5.2024.", "en": "Art exhibition \"Satumetsän tarinat\" by Jenny Holmberg in Entresse Library during 6.5.-26.5.2024." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghuzrxp5m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghtrgslvm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-02T08:28:01.890343Z", "last_modified_time": "2024-05-06T05:25:29.350255Z", "date_published": "2024-05-02T08:20:00Z", "start_time": "2024-05-23T14:00:00Z", "end_time": "2024-05-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa keskustelemaan Tapiolan alueen nuorten toiminnasta. Lapset ja nuoret viettävät vapaa-aikaansa niin kirjastossa kuin nuorisotilallakin, ja toimintaa suunnitellaan yhdessä lasten, nuorten ja perheiden kanssa. Tule kuulemaan ja ideoimaan, millaista toimintaa on ja voisi olla lapsille ja nuorille kirjastossa ja nuorisotilalla.</p><p>Paikalla ovat Tapiolan kirjaston lasten ja nuorten toiminnasta vastaava Katariina Lauronen sekä nuorisopalveluiden työntekijät Tuomas Rapp ja Miika Hautala.</p>", "sv": "<p>Kom och diskutera fritidstjänster för unga i Hagalundsområdet</p><p>Evenemangen är på finska.</p>", "en": "<p>Come and discuss leisure services for young people in the Tapiola area</p><p>The event is in Finnish.</p>" }, "name": { "fi": "Tule keskustelemaan nuorten vapaa-ajan palveluista Tapiolan alueella", "sv": "Kom och diskutera fritidstjänster för unga i Hagalundsområdet", "en": "Come and discuss leisure services for young people in the Tapiola area" }, "short_description": { "fi": "Tervetuloa keskustelemaan Tapiolan alueen nuorten toiminnasta. ", "sv": "Kom och diskutera fritidstjänster för unga i Hagalundsområdet", "en": "Kom och diskutera fritidstjänster för unga i Hagalundsområdet" }, "location_extra_info": { "fi": "Nuortentila", "sv": "Nuortentila", "en": "Nuortentila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghtrgslvm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:4f0dec54-8d53-45ea-ba5b-858781beacc0", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:311dd2b3-8398-48d2-81f8-08f698cccdb0/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://youtu.be/bUbA5y1hnFg?si=MWqUiMszUukmrSX5", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/0c7401d9-3d09-ef11-9f8a-000d3ab363c5?readableEventId=MKtest_lomaketest_LE64_Custom_field_testi_no1_Teams-tapahtuma3005082531" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 151004, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-06T05:02:11.156122Z", "last_modified_time": "2024-05-06T05:02:11.156146Z", "name": "Joku kuva kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e577da3e-2609-ef11-9f8a-000d3ab363c5", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Joku kuva alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151004/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-05-03T11:22:47.998412Z", "last_modified_time": "2024-05-06T05:02:14.888501Z", "date_published": "2024-05-03T11:19:54Z", "start_time": "2024-05-06T05:00:00Z", "end_time": "2024-05-06T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 11, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": 2, "enrolment_start_time": "2024-04-29T08:00:00+03:00", "enrolment_end_time": "2024-05-04T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "Business Helsinki" }, "description": { "fi": "<div><p>MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) LONG DESC</p></div>" }, "name": { "fi": "MKtest lomaketest LE65_Custom field testi (Päivitys klo 16:04)" }, "short_description": { "fi": "MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) SHORT DESC" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:4f0dec54-8d53-45ea-ba5b-858781beacc0/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:311dd2b3-8398-48d2-81f8-08f698cccdb0", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74762/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://youtu.be/bUbA5y1hnFg?si=MWqUiMszUukmrSX5", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/de4a5155-2309-ef11-9f8a-000d3ab363c5?readableEventId=MKtest_lomaketest_LE64_Custom_field_testi_no1_Teams-tapahtuma2976558314" }, "description": null } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:4f0dec54-8d53-45ea-ba5b-858781beacc0/?format=api" } ], "images": [ { "id": 151000, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-06T04:59:51.264910Z", "last_modified_time": "2024-05-06T04:59:51.264925Z", "name": "Tiiliseinä kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e377da3e-2609-ef11-9f8a-000d3ab363c5", "cropping": "", "photographer_name": "Lars Linssi", "alt_text": "Tiiliseinä alt", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151000/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-05-03T08:25:18.614782Z", "last_modified_time": "2024-05-06T04:59:52.764113Z", "date_published": "2024-05-03T08:16:14Z", "start_time": "2024-05-06T05:00:00Z", "end_time": "2024-05-06T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 11, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 4, "minimum_attendee_capacity": 2, "enrolment_start_time": "2024-04-29T08:00:00+03:00", "enrolment_end_time": "2024-05-04T08:00:00+03:00", "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "Business Helsinki" }, "description": { "fi": "<div><p>MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) LONG DESC</p></div>" }, "name": { "fi": "MKtest lomaketest LE64_Custom field testi (Päivitys klo 15:37)" }, "short_description": { "fi": "MKtest lomaketest LE64_Custom field testi no:1 (Teams-tapahtuma) SHORT DESC" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:311dd2b3-8398-48d2-81f8-08f698cccdb0/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghs54ysqu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T12:12:22.907279Z", "last_modified_time": "2024-05-05T10:36:32.038854Z", "date_published": null, "start_time": "2024-05-15T14:30:00Z", "end_time": "2024-05-15T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider_contact_info": null, "provider": { "fi": "alueen kaupunginosayhdistykset " }, "description": { "fi": "<p>Tule kysymää ja keskustelemaan!</p><p>Saako Lapseni päivähoitopaikan?<br>Onko päiväkodin ympäristö turvallinen?<br>Missä perusopetusta annetaan?<br>Riittävätkö koulupaikat kasvavalle väestölle? </p><p>Perusopetuksen johtaja Juha Nurmi, aluepäällikkö Sariminna Solala sekä varhaiskasvatuksen aluepäällikkö Tarja Ojanen Espoon kaupungilta kertovat nykytilanteesta sekä varhaiskasvatuksen ja perusopetuksen tulevaisuudesta. </p><p>Ison Omenan kirjaston Stagelle keskiviikkona 15.5. klo 17.30-19.30 </p><p>Tilaisuuden järjestävät alueen kaupunginosayhdistykset </p>" }, "name": { "fi": "Asukastilaisuus Suur-Matinkylän varhaiskasvatuksesta ja perusopetuksesta" }, "short_description": { "fi": "Tule kysymää ja keskustelemaan!" }, "location_extra_info": { "fi": "Stage " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghs54ysqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agg6a6ectm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agg6a6ecga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agg6a6ecla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agg6a6ecp4/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-23T09:50:06.193099Z", "last_modified_time": "2024-05-05T10:34:31.223735Z", "date_published": null, "start_time": "2024-03-06T15:30:00Z", "end_time": "2024-05-08T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Ison_Omenan_kirjasto/Tapahtumat" }, "provider_contact_info": null, "provider": { "fi": "Matinkylä-Seura ja Etelä-Espoon eläkeläisten musiikkikerho Elmuska" }, "description": { "fi": "<p>6.3. Lauluilta Alisa Mannisen ja Matinkylän viihdekuoron johdolla</p><p>3.4. Lauluillassa Etelä-Espoon Eläkeläisten musiikkikerho Elmuska laulattaa yleisöä</p><p>8.5. Yleisöä laulattaa kirjaston muusikot Timopekka sekä Lauri. </p><p>Tervetuloa laulamaan yhdessä Etelä-Espoon Eläkeläisten Musiikkikerho Elmuskan kanssa.</p><p>Väliajalla Matinkylä-Seura järjestää maksuttoman tarjoilun lauluihin osallistuneille.</p>", "sv": "<p>6.3. Sångkväll med Alisa Manninen och Matinkylä Entertainment Choir</p><p>3.4. Elmuska, av södra esbos pensionärer musikklubb sjunger för publiken i sångkvällen.</p><p>8.5. Bibliotekets musiker Timopekka och Lauri sjunger för publiken.</p><p>Välkommen att sjunga tillsammans med Elmuska och Matinkylä-Seura. </p><p>I pausen anordnar Matinkylä-Seura en gratis måltid för de som medverkat i sångerna.</p>", "en": "<p>6.3. Singing evening with Alisa Manninen and the Matinkylä Entertainment Choir</p><p>3.4. Elmuska, the pensioners of southern Espoo music club sings to the audience</p><p>8.5. The library's musicians Timopekka and Lauri sing to the audience.</p><p>Welcome to sing together with Elmuska and Matinkylä-Seura.</p><p>During the break, Matinkylä-Seura organizes a free meal for those who participated in the songs.<br><br>Lähetä palautetta<br>Sivupaneelit<br></p>" }, "name": { "fi": "Matinkylän lauluilta ", "sv": "Matinkylä sångkväll", "en": " Matinkylä song evening " }, "short_description": { "fi": "Matinkylän lauluilta Stagella klo 17.30-19.30 \nLauluillat keväällä keskiviikkoisin 6.3., 3.4., ja 8.5.", "sv": "Matinkylä sångkväll på Stage kl 17:30-19:30\nSångkvällar på våren onsdagarna 6.3., 3.4. och 8.5.", "en": "\n\nMatinkylä song evening on Stage at 17:30-19:30\nSinging evenings in spring on Wednesdays 6.3., 3.4., and 8.5." }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agg6a6ectm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63294", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 82046, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-04T08:13:16.007495Z", "last_modified_time": "2024-04-04T08:13:16.007512Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746452.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/82046/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-03T09:13:53.991677Z", "last_modified_time": "2024-05-03T14:13:32.213867Z", "date_published": null, "start_time": "2024-05-13T14:00:00Z", "end_time": "2024-05-13T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D3D122DDDBA65873825C0B3F1ED250B7/Kirsi_Kunnas_100v_-runo-olohuoneen_avajaiset", "sv": "http://www.annantalo.fi/sv/evenemang/event/D3D122DDDBA65873825C0B3F1ED250B7/Kirsi_Kunnas_100_ar_diktvardagsrummets_oppning", "en": "http://www.annantalo.fi/en/events/event/D3D122DDDBA65873825C0B3F1ED250B7/" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Maanantain ohjelmassa on runo-olohuoneen avajaiset.</p><p>klo 17 avajaissanat</p><p>klo 17.05-17.15 <br>Tanssiteatteri GLIMS & GLOMS: Tii-tii-tiitiäinen</p><p>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen ja Haitula.</p><p>klo 17.15 <br>Satupuu<br>Kirsi Kunnaksen luontoaiheiset tarinat valtaavat runo-olohuoneen. <br> <br>Tule kuuntelemaan sadunkertoja Sinivatukan lukuhetkeä ja maalaamaan metsäkansaa taideohjaaja Mustikan johdolla. Non-stop taidepajassa sekoitellaan luonnonvärejä ja maalataan hahmoja yhteiseen satupuuhun.</p><p>Lukuhetkiä järjestetään runo-olohuoneessa 20min välein. Max 15 hlöä kerrallaan runo-oluhuoneessa.<br> <br>Ohjaajina Annantalon taidekasvattajat Karoliina Helminen ja Jenna Saarinen <br> <br>klo 18.45-19 <br>Tanssiteatteri GLIMS & GLOMS: Tii-tii-tiitiäinen <br>Tii-Tii-Tiitiäinen on Kirsi Kunnaksen runoihin perustuva koko perheen esitys, josta nähdään Annantalolla maistiainen.<br>Esityksessä seikkailevat Kunnaksen tuotannosta useille sukupolville tutut hahmot, muun muassa Tiitiäinen ja Haitula.</p><p>Annantalon 2.kerros<br>Alle 8v-aikuisen seurassa<br>Vapaa pääsy</p>", "sv": "<p>Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.</p><p>kl. 17 öppningsord<br>kl. 17.05–17.15<br>Dansteater GLIMS & GLOMS: Tii-tii-tiitiäinen</p><p>Tii-tii-tiitiäinen är en föreställning för hela familjen som grundar sig på Kirsi Kunnas dikter. På Annegården får vi se ett smakprov av föreställningen.<br>I föreställningen är figurerna från Kirsi Kunnas produktion som är välbekanta för flera generationer, exempelvis Tiitiäinen och Hattula, ute på äventyr.</p><p>Kl. 17.15<br>Sagoträdet<br>Kirsi Kunnas berättelser med naturtema tar över diktvardagsrummet.</p><p>Kom och lyssna på sagoberättare Sinivatukkas lässtund och måla skogsfolket under ledning av konsthandledare Mustikka. I nonstop-workshoppen blandar vi naturfärger och målar figurer till ett gemensamt sagoträd.</p><p>Lässtunderna ordnas i diktvardagsrummet med 20 minuters intervall. Maximalt 15 personer på en gång i diktvardagsrummet.</p><p>Som handledare fungerar Annegårdens konstpedagoger Karoliina Helminen och Jenna Saarinen</p><p>kl. 18.45–19<br>Dansteater GLIMS & GLOMS: Tii-tii-tiitiäinen <br>Tii-tii-tiitiäinen är en föreställning för hela familjen som grundar sig på Kirsi Kunnas dikter. På Annegården får vi se ett smakprov av föreställningen.<br>I föreställningen är figurerna från Kirsi Kunnas produktion som är välbekanta för flera generationer, exempelvis Tiitiäinen och Hattula, ute på äventyr.</p><p>Annegården, 2. våningen<br>Under 8-åringar i sällskap av en vuxen<br>Fritt inträde</p>", "en": "<p>Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years poetry lounge with a programme of events throughout the week. Monday's programme includes the opening of the poetry room.</p><p>5 pm opening words<br>5:05–5:15 pm<br>GLIMS & GLOMS Dance Theatre: Tii-tii-tiitiäinen</p><p>Tii-Tii-Tiitiäinen is a performance for the whole family based on the poems of Kirsi Kunnas, which is being previewed at Annantalo.<br>The performance features generational favourite characters from Kunnas' works, including Tiitiäinen and Haitula.</p><p>5:15 pm<br>Satupuu<br>The nature-themed stories of Kirsi Kunnas’ Satupuu take over the poetry lounge.</p><p>Come and listen to Sinivatukka's story time and paint the forest folk under the guidance of art director Mustikka. This non-stop art workshop mixes natural colours and paints characters in a shared tree of fairy tales.<br>Reading sessions are held in the poetry lounge every 20 minutes. Visitor limit in the poetry lounge 15 people.</p><p>Directed by Annantalo art educators Karoliina Helminen and Jenna Saarinen</p><p>6:45–7 pm<br>GLIMS & GLOMS Dance Theatre: Tii-Tii-Tiitiäinen<br>Tii-Tii-Tiitiäinen is a performance for the whole family based on the poems of Kirsi Kunnas, which is being previewed at Annantalo.<br>The performance features generational favourite characters from Kunnas' works, including Tiitiäinen and Haitula.</p><p>Annantalo 2nd floor<br>Children under 8 with an adult<br>Free entrance</p>" }, "name": { "fi": "Kirsi Kunnas 100v. -runo-olohuoneen avajaiset – Lastenkulttuurin juhlaviikko", "sv": "Kirsi Kunnas 100 år diktvardagsrummets öppning – Barnkulturens festvecka", "en": "Children’s Culture Week" }, "short_description": { "fi": "Tervetuloa Annantalolle Lastenkulttuurin juhlaviikolla, jolloin riemuitaan kirjallisuudesta, lukemisesta ja kuuntelemisesta! Juhlaviikon sydän on Kirsi Kunnas 100v. -runo-olohuone, jonka ympärillä on ohjelmaa pitkin viikkoa. Maanantain ohjelmassa on runo-olohuoneen avajaiset.", "sv": "Välkommen till Annegården under Barnkulturens festvecka, då vi firar litteratur, läsning och lyssnande! Jubileumsveckans kärna är poesirummet Kirsi Kunnas 100 år, med program under hela veckan.", "en": "Welcome to Annantalo during the Children's Culture Week, a celebration of literature, reading and listening! At the heart of the week is the Kirsi Kunnas 100 Years poetry lounge with a programme of events throughout the week. Monday's programme includes the opening of the poetry room." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63294/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61235", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6173, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T11:13:42.808558Z", "last_modified_time": "2024-02-06T13:23:41.252930Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739455.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6173/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T11:13:42.784197Z", "last_modified_time": "2024-05-03T14:13:32.009287Z", "date_published": null, "start_time": "2024-05-13", "end_time": "2024-05-18", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/728C7B548C532557A62914E4F60AEFC7/Lastenkulttuurin_juhlaviikko_Annantalolla", "sv": "http://www.annantalo.fi/sv/evenemang/event/728C7B548C532557A62914E4F60AEFC7/Barnkulturens_festvecka_i_Annegarden", "en": "http://www.annantalo.fi/en/events/event/728C7B548C532557A62914E4F60AEFC7/Children_s_culture_week_at_Annantalo" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Lastenkulttuurin juhlaviikolla riemuitaan lukemisen ilosta ja kirjallisuudesta!</p><p>Kirsi Kunnaksen 100-vuotisjuhlaa juhlistavassa Runo-olohuoneessa Annantalon toisessa kerrokesessa kuullaan ja kerrotaan tarinoita pitkin viikkoa. Viikon aikana runouteen ja kirjallisuuteen perehdytään myös työpajojen ja luentojen kautta.<br> <br>Viikko huipentuu lauantaina 18.5. tapahtumapäivään, jolloin Kirsi Kunnaksen eläinaiheiset runot ja muu eläinaiheinen lastenkirjallisuus ottaa monet taiteen muodot avoimissa työpajoissa. Juhlasalissa nähdään teatteria ja kuvataidetta yhdistelevä esitys Maalarikissat.</p>", "sv": "<p>Under barnkulturens festvecka gläder man sig över läsningens glädje och litteratur!</p><p>Kirsi Kunnas 100-årsjubileum firas med Diktvardagsrummet (andra våningen i Annegården) där man hör och berättar historier under hela veckan. Under veckan fördjupar man sig i poesi och litteratur även genom verkstäder och föreläsningar.</p>", "en": "<p>Children’s culture week celebrates the joy of reading and literature!</p><p>At the Poetry Lounge (second floor of Annantalo), which celebrates Kirsi Kunnas’ 100th anniversary, you can hear and tell stories throughout the week. During the week, poetry and literature are also studied at workshops and lectures.<br> <br>The week culminates on Saturday 18 May with an event day as Kirsi Kunnas’ poems about animals and other animal-related children’s literature take on many forms of art at open workshops. A performance combining theatre and visual art, The Color Kittens, will be seen in the Hall.</p>" }, "name": { "fi": "Lastenkulttuurin juhlaviikko Annantalolla", "sv": "Barnkulturens festvecka i Annegården", "en": "Children’s culture week at Annantalo" }, "short_description": { "fi": "Lastenkulttuurin juhlaviikolla riemuitaan lukemisen ilosta ja kirjallisuudesta!", "sv": "Under barnkulturens festvecka gläder man sig över läsningens glädje och litteratur!", "en": "Children’s culture week celebrates the joy of reading and literature!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63155", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "18,90 €", "sv": "18,90 €", "en": "18,90 €" }, "info_url": { "fi": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab=", "sv": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab=", "en": "https://www.lippu.fi/event/sintonen-sakarat-levynjulkaisukonsertti-malmitalo-18368309/#tab=" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11835, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-12T09:14:33.120563Z", "last_modified_time": "2024-03-12T09:14:33.120578Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745280.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11835/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-12T09:14:33.078858Z", "last_modified_time": "2024-05-03T12:12:58.670176Z", "date_published": null, "start_time": "2024-05-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat", "en": "http://www.malmitalo.fi/en/events/event/7FB2AAF5A3AECF1B4D6570519BDCDE22/Sintonen_Sakarat" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kuulijoita on erityisesti viihdyttänyt bändin lavasoundi sekä tunteisiin vetoavat kappaleet. Yhtye on hyvän livebändin maineessa ja esiintymisiä onkin ollut ympäri Suomea.</p><p>Sintonen & Sakarat on viisihenkinen suomenkielinen pop-rock yhtye. Yhtyeen jäsenet ovat Eeroa lukuun ottamatta jakaneet yhdessä pitkän musiikillisen taipaleen ja hyvät henkilökemiat näkyvät niin treenikämpällä kuin keikallakin.</p><p>Yhtye on toimintansa alusta alkaen pyrkinyt tarjoamaan mahdollisimman korkeatasoista musiikkia kuulijoille ja yhteistyö Helsinki Rock Productionsin Hannu Leidenin sekä Eero Kaukomiehen kanssa on tuottanut hyvää tulosta.</p><p>Yhtyeen kappaleet syntyvät sulavassa yhteistyössä Eero Sintosen sävellysten ja sanoitusten ympärille. Kappaleissa käsitellään niin rakkautta eri muodoissaan kuin elämän yksinkertaisuuksia tarinoita unohtamatta. Tunneherkkyys on sanoituksissa isossa roolissa.</p><p>Sintonen & Sakarat perustettiin vuonna 2019 Kirkkonummella. Vuonna 2020 yhtye julkaisi ensimmäiset singlensä “Poimi tarkoin”, “Tänään” sekä “Pienistä katseista”. Vuonna 2021 Ilmestyi yhtyeen neljäs single “En anna pois sitä heittää”. Vuonna 2022 ilmestyi sekä yhtyeen viides single “Värit talveksi” että yhdeksän kappaleen esikoisalbumi “Poimi tarkoin”. Vuonna 2023 yhtye julkaisi singlet “Kauniita kuvia” sekä “Lähtiessä halataan”.</p><p>Yhtye julkaisee toisen albuminsa vuonna 2024.<br>Jäsenet: Eero Sintonen, Riku Tuovinen, Santeri Sannemann, Juuso Harakka, Jari Vireaho</p><p>Kesto: 90 min + väliaika</p>", "sv": "<p>Sintonen & Sakarat är ett finskspråkigt pop-rockband med fem medlemmar.</p><p>Åhörarna har varit särskilt förtjusta i bandets scensound och känslofyllda låtar. Bandet är känt för fina livespelningar och har framträtt på olika håll i Finland.</p>", "en": "<p>Sintonen & Sakarat is a five-person pop-rock band that performs in Finnish.</p><p>Their listeners particularly like the band’s stage sound and their emotional songs. They have become known as an excellent live band and have been touring all around Finland.</p>" }, "name": { "fi": "Sintonen & Sakarat – levynjulkaisukeikka", "sv": "Sintonen & Sakarat", "en": "Sintonen & Sakarat" }, "short_description": { "fi": "Kuulijoita on erityisesti viihdyttänyt bändin lavasoundi sekä tunteisiin vetoavat kappaleet. Yhtye on hyvän livebändin maineessa ja esiintymisiä onkin ollut ympäri Suomea.", "sv": "Sintonen & Sakarat är ett finskspråkigt pop-rockband med fem medlemmar.", "en": "Sintonen & Sakarat is a five-person pop-rock band that performs in Finnish." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63155/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63334", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 118807, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-10T11:13:57.297969Z", "last_modified_time": "2024-04-10T11:13:57.297984Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749061.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/118807/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-04-10T11:13:57.256930Z", "last_modified_time": "2024-05-03T12:12:57.529510Z", "date_published": null, "start_time": "2024-05-03", "end_time": "2024-05-19", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4E1B56AB81EA8D70F113331DA967FA71/Annantalon_kesakurssit", "sv": "http://www.annantalo.fi/sv/evenemang/event/4E1B56AB81EA8D70F113331DA967FA71/Annegardens_sommarkurser", "en": "http://www.annantalo.fi/en/events/event/4E1B56AB81EA8D70F113331DA967FA71/Annantalo_summer_courses" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Taidekurssit mahdollistavat 7–9- ja 10–12-vuotiaille helsinkiläisille tilaisuuden harrastaa taidetta myös kesälomalla.</p><p>Viikon mittaisen kurssin päivittäinen kesto on noin 4 tuntia. Päivän aikana syödään Annantalon oman kahvilan valmistama lounas.</p><p>Kesäkursseilla yhdistellään eri taidemuotoja ja työskennellään sekä Annantalon taideluokissa, että pihapiirissä. Ohjaajina toimivat Annantalon ammattitaitoiset taidekasvattajat. Kurssien opetuskieli on suomi.</p><p>Kesäkurssin hinta on 155 €, sisältäen päivittäisen lounaan. <br> <br>Ilmoittautuminen on käynnissä su 5.5. asti.<br>Tarvitset verkkopankkitunnukset, kun ilmoittaudut. Kurssimaksu maksetaan ilmoittautumisen yhteydessä.</p><p>Helsinkiläiset lapset voivat harrastaa taidetta, vaikka perheellä olisi vähän rahaa. Voit hakea kesäkurssille ilmaista paikkaa eli vapaaoppilaspaikkaa sunnuntaihin 21.4.2024 asti.</p><p>Helsingin kaupunki ei vakuuta lapsia kurssien ajaksi.</p><p>Kurssille ilmoittautuneet saavat lisätietoja sähköpostitse toukokuun aikana.</p><p>Tutustu taidekursseihin ja ilmoittaudu mukaan verkkosivuillamme osoitteessa Annantalo - Taidekurssit. https://www.annantalo.fi/fi/taidekurssit/</p>", "sv": "<p>Du kan gå på konstkurs även på sommaren! Sommarens konstkurser på Annegården är inspirerande kurser på en vecka.</p><p>Vi erbjuder sommarkurser både för 7–9-åriga och 10–12-åriga barn.</p><p>Kursens dagliga längd är cirka 4 timmar. Under dagen äter vi lunch som har tillagats av Annegårdens eget kafé.</p><p>På sommarkurserna kombinerar vi olika konstarter och jobbar både i Annegårdens konstklasser och ute på gården. Annegårdens kunniga konstpedagoger fungerar som handledare.</p><p>Undervisningsspråket är finska.</p><p>Sommarkursernas pris är 155 €, inklusive den dagliga lunchen.</p><p>Kurserna handleds på finska.</p><p>Du behöver nätbankskoder för att anmäla dig. Kursavgiften betalas i samband med anmälningen.</p><p>Helsingforsbarn kan ha konst som hobby även om familjen är mindre bemedlad. Du kan ansöka om en gratisplats på en sommarkurs, det vill säga en reservelevplats, fram till söndagen 21.4.2024.</p><p>Helsingfors stad försäkrar inte barnen under kursen.</p><p>De som har anmält sig till en kurs får mer information per e-post under maj månad.</p><p>Anmäl dig på sommarkurs på vår webbplats på adressen: https://www.annantalo.fi/fi/taidekurssit/</p><p>Språk: finska</p>", "en": "<p>Art courses are also available in the summer! Annantalo's inspirational summer art courses are one week long.</p><p>Summer courses are available for children aged 7–9 years old and 10–12 years old.</p><p>The courses last four hours per day. Daily lunches are prepared every day at the Annantalo café.</p><p>The summer courses combine different art forms and work both in the Art Centre's classrooms and the yard. Annantalo’s professional art educators will serve as the course instructors. The courses are held in Finnish.</p><p>The price of a summer course is €155, including a daily lunch. <br>Course instruction is in Finnish.</p><p>You will need online banking codes to sign up. The course fee is paid during sign-up.</p><p>Children from Helsinki have opportunities for an art hobby, even if their family is low-income. Apply for a free student slot on a summer course by Sunday, 21 April 2024.</p><p>The City of Helsinki does not insure children during the courses.</p><p>People who signed up for the courses will be sent additional information during the month of May.</p><p>Sign up for the summer courses on our website at:https://www.annantalo.fi/fi/taidekurssit/</p>" }, "name": { "fi": "Annantalon kesäkurssit – Ilmoittaudu mukaan taidekursseille!", "sv": "Annegårdens sommarkurser", "en": "Annantalo summer courses" }, "short_description": { "fi": "Taidekurssit mahdollistavat 7–9- ja 10–12-vuotiaille helsinkiläisille tilaisuuden harrastaa taidetta myös kesälomalla.", "sv": "Du kan gå på konstkurs även på sommaren! Sommarens konstkurser på Annegården är inspirerande kurser på en vecka.", "en": "Art courses are also available in the summer! Annantalo's inspirational summer art courses are one week long." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63334/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aght4zkfee", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-05-03T11:46:34.454651Z", "last_modified_time": "2024-05-03T11:46:34.454675Z", "date_published": "2024-05-03T11:29:00Z", "start_time": "2024-05-17T14:00:00Z", "end_time": "2024-05-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, "info_url": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Suomen ukrainalainen teatteri kutsuu 5-vuotiaat ja teini-ikäiset lapset \"Kasvissyöjäkettu\" -esityksen ensimmäisiksi katsojiksi. Näytelmän näyttelijät ovat ukrainalaisia teini-ikäisiä.<br>Esitys kestää 50 minuuttia.<br>Esityksen kieli on ukraina. Ennen esitystä esitellään esityksen sisältö ja käännös suomeksi.</p>", "sv": "<p>Ukrainska teatern i Finland bjuder in barn från 5 år och tonåringar att bli den första publiken av föreställningen \"Vegetarräven\". Skådespelarna i pjäsen är ukrainska tonåringar.<br>Föreställningen kommer att pågå i 50 minuter.<br>Föreställningens språk är ukrainska. Inför föreställningen blir det en introduktion till föreställningens innehåll med översättning till finska.</p>", "en": "<p>The Ukrainian Theatre in Finland (Yhdistys Suomen ukrainalainen teatteri Ry) invites children from 5 years old and teenagers to become the first audience of the performance \"The Vegetarian Fox\".The actors of the play are Ukrainian teenagers.<br>The performance will last 50 minutes.<br>The language of the performance is Ukrainian. Before the performance, there will be an introduction to the content of the performance with translation into Finnish.<br></p>" }, "name": { "fi": "Kasvissyöjäkettu", "sv": "Vegetarräven", "en": "The Vegetarian Fox" }, "short_description": { "fi": "Esityksen kieli on ukraina. Ennen esitystä esitellään esityksen sisältö ja käännös suomeksi.", "sv": "Föreställningens språk är ukrainska. En introduktion innehåll med översättning till finska.", "en": "The language of the performance is Ukrainian. Introduction to the content with translation into Finnish." }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aght4zkfee/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63460", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-24T14:14:26.337311Z", "last_modified_time": "2024-04-24T14:14:26.337330Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744836.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-24T14:14:26.302485Z", "last_modified_time": "2024-05-03T10:12:59.888616Z", "date_published": null, "start_time": "2024-05-19T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/56904F46C8821BD29639F27701A12D83/Tuija_Rantalainen_ja_Vahtikoira_Veikko", "sv": "http://www.espanlava.fi/sv/evenemang/event/56904F46C8821BD29639F27701A12D83/Tuija_Rantalainen_ja_Vahtikoira_Veikko", "en": "http://www.espanlava.fi/en/events/event/56904F46C8821BD29639F27701A12D83/Tuija_Rantalainen_ja_Vahtikoira_Veikko" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Lasten rakastama, hauska ja taitava duo saapuu Espan lavalle juhlistamaan Lastenkulttuuriviikkoa. Esityksessä yleisö saa laulaa, leikkiä ja tanssia mukana.</p><p>Lastenmusiikkia ja musateatteria esittävä duo on keikkaillut jo noin 300 keikan verran mm. Savonlinnan Oopperajuhlilla, Maailma kylässä -festareilla, Kajaanin runoviikoilla, teattereissa, kouluissa ja lastentapahtumissa Suomessa ja Saksassa.</p><p>Tuija Rantalainen on julkaisut kolme kiiteltyä lastenalbumia, joista toinen (Vahtikoira karkuteillä) oli Emma-ehdokkaana 2016. Vuoden 2023 Jellonagaalassa Tuija palkittiin vuoden lastenmusiikintekijän palkinnolla ja duo sai Vuoden lastenmusiikkiartisti -Jellonan.</p><p>Tuija Rantalainen, laulu ja piano<br>Veini Nupponen (Vahtikoira Veikko), laulu</p>", "sv": "<p>Den roliga och begåvade duon som älskas av barn kommer att anlända till Espas scen för att fira Barnkulturveckan. I föreställningen kan publiken sjunga, spela och dansa med.</p>", "en": "<p>The fun and talented duo loved by children will arrive on Espa's stage to celebrate Children's Culture Week. In the performance, the audience can sing, play and dance along.</p>" }, "name": { "fi": "Tuija Rantalainen ja Vahtikoira Veikko", "sv": "Tuija Rantalainen ja Vahtikoira Veikko", "en": "Tuija Rantalainen ja Vahtikoira Veikko" }, "short_description": { "fi": "Lasten rakastama, hauska ja taitava duo saapuu Espan lavalle juhlistamaan Lastenkulttuuriviikkoa. Esityksessä yleisö saa laulaa, leikkiä ja tanssia mukana.", "sv": "Den roliga och begåvade duon som älskas av barn kommer att anlända till Espas scen för att fira Barnkulturveckan. I föreställningen kan publiken sjunga, spela och dansa med.", "en": "The fun and talented duo loved by children will arrive on Espa's stage to celebrate Children's Culture Week. In the performance, the audience can sing, play and dance along." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63460/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aght3clw4m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-03T08:01:14.590428Z", "last_modified_time": "2024-05-03T08:01:14.590455Z", "date_published": null, "start_time": "2024-05-09T11:00:00Z", "end_time": "2024-05-09T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://helmet.finna.fi/OrganisationInfo/Home#84834", "sv": "https://helmet.finna.fi/OrganisationInfo/Home?lng=sv#84834", "en": "https://helmet.finna.fi/OrganisationInfo/Home?lng=en-gb#84834" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule valmistamaan lahja ja kortti annettavaksi äitienpäivänä.</p><p>Korvakorut, paperikukkia, onnittelukortti.</p><p>Pajassa klo 14:00-16:00 </p>", "sv": "<p><br>Kom och tillverka en present och ett kort att ge på Mors dag.</p><p>Örhängen, Pappersblommor, Gratulationskort.</p><p>Verkstad kl. 14:00-16:00</p>", "en": "<p>Come and make a gift and a card to give on Mother's Day.</p><p>Earrings, Paper flowers, Congratulations card.</p><p>Makerspace 14:00-16:00</p>" }, "name": { "fi": "Äitienpäiväpaja ", "sv": "Morsdagsverkstad", "en": " Mother's Day Workshop " }, "short_description": { "fi": "\nTule valmistamaan lahja ja kortti annettavaksi äitienpäivänä.\nKorvakorut, paperikukkia, onnittelukortti\n\n", "sv": "\nKom och tillverka en present och ett kort att ge på Mors dag.\nÖrhängen, Pappersblommor, Gratulationskort", "en": "Come and make a gift and a card to give on Mother's Day.\nEarrings, Paper flowers, Congratulations card" }, "location_extra_info": { "fi": "Paja", "sv": "verkstad", "en": "makerspace" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aght3clw4m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19216, "next": "