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=220
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=221", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=219" }, "data": [ { "id": "kulke:63338", "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:105/?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:732/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 119585, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-10T14:13:51.567807Z", "last_modified_time": "2024-04-10T14:13:51.567847Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744291.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/119585/?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-10T14:13:51.531162Z", "last_modified_time": "2024-04-18T09:13:10.415247Z", "date_published": null, "start_time": "2024-06-10T07:00:00Z", "end_time": "2024-06-14T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 7, "audience_max_age": 10, "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, "provider_contact_info": null, "description": { "fi": "<p>Kesän 2024 taideleireillä lähdetään ihmettelyretkelle metsään!</p><p>Taideleireillä tutustutaan erilaisiin maalaamisen ja piirtämisen perustekniikoihin sekä luonnosta saataviin materiaaleihin. Niiden kanssa havainnoimme lähimetsän kuhinaa ja päästämme mielikuvituksemme liitelemään.</p><p>Taideleiri kestää viisi päivää. Kokoonnumme maanantaista perjantaihin klo 10-14 Kanneltaloon.</p><p>Huom! Poikkeuksena kokopäiväretki Seurasaareen, jolloin päivä alkaa klo 9.30 ja päättyy klo 14.30.</p><p>Taideleiri on maksuton, mutta edellyttää sitoutumista koko viikon työskentelyyn. Taideleirille otetaan enintään 10 oppilasta. Taideleirit järjestetään yhteistyössä Helsingin Taiteilijaseuran kanssa.</p><p>Opettajana toimii kuvataiteilija Piia Kokkarinen. <br>Opetuspaikka: Kanneltalo + Seurasaari<br>Ikä: 7–10-vuotiaat</p><p>Ilmoittautumiset: 15.4. alkaen: liisa.paatsalo@hel.fi</p><p>HUOM! Kerro ilmoittautumisen yhteydessä, että haetko paikkaa kesäkuun vai heinäkuun lopussa alkavalle leirille.</p><p><b>Muista ottaa leirille mukaan:</b><br>- säähän sopivat vaatteet, joissa on mukava liikkua<br>- päähine ja aurinkorasva<br>- omat eväät (ei karkkia, sipsejä tai limua)</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kesän 2024 taideleireillä lähdetään ihmettelyretkelle metsään!" }, "name": { "fi": "TÄYNNÄ Luovasti metsässä -kesätaideleiri – 7–10-vuotiaille lapsille" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/42EF12E53069463BAA64797386B60D91/TAYNNA_Luovasti_metsassa_-kesataideleiri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63338/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpae32lq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae32ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae32vm/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2024-04-18T07:09:48.493172Z", "last_modified_time": "2024-04-18T07:11:09.495423Z", "date_published": null, "start_time": "2024-04-24T14:45:00Z", "end_time": "2024-05-15T15: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, "provider_contact_info": null, "description": { "fi": "<p>Lukulemmikki Cara odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:45 - 18:30 .</p><p>Kevään 2024 lukukerrat:<br>Ke 24.4.<br>Ke 15.5.</p><p>Tervetuloa!</p>", "sv": "<p>Läskeldjur Cara ser fram emot läsare på Lippulaiva biblioteket kl. 17:45 - 18:30.</p><p>Läsdagar våren 2024:<br>Onsdag 24.4.<br>Onsdag 15.5.</p><p>Välkommen!</p>", "en": "<p>Reading Buddy Cara is eagerly awaiting readers at Lippulaiva Library from 17:45 to 18:30.</p><p>Reading dates for Spring 2024:<br>Wednesday 24.4.<br>Wednesday 15.5.</p><p>Welcome!</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lukulemmikki Cara odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:45 - 18:30.", "sv": "Läskeldjur Cara ser fram emot läsare på Lippulaiva biblioteket kl. 17:45 - 18:30.", "en": "Reading Buddy Cara is eagerly awaiting readers at Lippulaiva Library from 17:45 - 18:30." }, "name": { "fi": "Lukulemmikki Cara", "sv": "Läskeldjur Cara", "en": "Reading Buddy Cara" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae32lq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpae32za", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-18T06:36:53.623320Z", "last_modified_time": "2024-04-18T06:36:53.623368Z", "date_published": null, "start_time": "2024-04-18T15:00:00Z", "end_time": "2024-04-18T17: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, "provider_contact_info": null, "description": { "fi": "<p>Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön? Vai kaipaatko vain hyvää seuraa tsemppaamaan ompelu- tai korjaustyön edistämisessä? Tervetuloa Ompeluklinikalle! Tapaamme Lippulaivan kirjaston pajassa torstaisin 15.2.-30.5.2024 klo 18.00-20.00.</p><p>Kirjaston ompelukoneet, saumurit, peitetikkikone ja muut ompeluvälineet ovat osallistujien käytettävissä. Kirjaston työntekijä tarjoaa opastusta laitteiden käyttöön. Lisäksi autetaan ja neuvotaan toinen toisiamme!</p>", "sv": "<p>Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? Eller behöver du bara gott sällskap som uppmuntrar till att främja ett sy- eller reparationsarbete? Välkommen till Sömnadskliniken! Vi träffas i Lippulaivabibliotekets Paja-verkstad på torsdagar 15.2-30.5.2024 kl. 18.00-20.00.<br>Bibliotekets symaskiner, overlockmaskiner, täcksömsmaskin och annan syutrustning står till deltagarnas förfogande. En av bibliotekets personal erbjuder hjälp med att använda maskinerna. Därtill hjälper och rådger man varandra!</p>", "en": "<p>Need peer support for your sewing problems or help with your sewing machine? Or do you just need some good company to cheer you on in your sewing or mending? Welcome to the Sewing Clinic! We meet at the Lippulaivan Library workshop on Thursdays 15.2.-30.5.2024 from 18.00-20.00.</p><p>Sewing machines, sewing machines, sewing machines, quilting machines and other sewing equipment will be available for participants. A library staff member will provide guidance on how to use the equipment. We will also help and advise each </p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön?", "sv": "Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? ", "en": "Need peer support for your sewing problems or help with your sewing machine?" }, "name": { "fi": "Ompeluklinikka", "sv": "Sömnadskliniken", "en": "Sewing clinic" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae32za/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghpae33qy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae325q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae33be/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae33e4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae33iy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae33na/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-18T06:36:20.729616Z", "last_modified_time": "2024-04-18T06:36:20.729640Z", "date_published": null, "start_time": "2024-04-25T15:00:00Z", "end_time": "2024-05-30T17: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, "provider_contact_info": null, "description": { "fi": "<p>Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön? Vai kaipaatko vain hyvää seuraa tsemppaamaan ompelu- tai korjaustyön edistämisessä? Tervetuloa Ompeluklinikalle! Tapaamme Lippulaivan kirjaston pajassa torstaisin 15.2.-30.5.2024 klo 18.00-20.00.</p><p>Kirjaston ompelukoneet, saumurit, peitetikkikone ja muut ompeluvälineet ovat osallistujien käytettävissä. Kirjaston työntekijä tarjoaa opastusta laitteiden käyttöön. Lisäksi autetaan ja neuvotaan toinen toisiamme!</p>", "sv": "<p>Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? Eller behöver du bara gott sällskap som uppmuntrar till att främja ett sy- eller reparationsarbete? Välkommen till Sömnadskliniken! Vi träffas i Lippulaivabibliotekets Paja-verkstad på torsdagar 15.2-30.5.2024 kl. 18.00-20.00.<br>Bibliotekets symaskiner, overlockmaskiner, täcksömsmaskin och annan syutrustning står till deltagarnas förfogande. En av bibliotekets personal erbjuder hjälp med att använda maskinerna. Därtill hjälper och rådger man varandra!</p>", "en": "<p>Need peer support for your sewing problems or help with your sewing machine? Or do you just need some good company to cheer you on in your sewing or mending? Welcome to the Sewing Clinic! We meet at the Lippulaivan Library workshop on Thursdays 15.2.-30.5.2024 from 18.00-20.00.</p><p>Sewing machines, sewing machines, sewing machines, quilting machines and other sewing equipment will be available for participants. A library staff member will provide guidance on how to use the equipment. We will also help and advise each </p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tarvitsetko vertaistukea ompelupulmiisi tai apua ompelukoneen käyttöön?", "sv": "Behöver du stöd till dina sömnadsproblem av andra som också syr eller hjälp med att använda symaskin? ", "en": "Need peer support for your sewing problems or help with your sewing machine?" }, "name": { "fi": "Ompeluklinikka", "sv": "Sömnadskliniken", "en": "Sewing clinic" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghpae33qy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agho7xci2y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcine/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcitu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcixm/?format=api" } ], "images": [ { "id": 150665, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-18T05:42:17.383444Z", "last_modified_time": "2024-04-18T05:42:17.383463Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Lukukoirat_Veiti_Nekku_ja_P%C3%A4tkis.png", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kolme koiraa kirjahyllyjen edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150665/?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-04-18T06:03:14.454632Z", "last_modified_time": "2024-04-18T06:03:14.454655Z", "date_published": "2024-04-18T06:00:00Z", "start_time": "2024-04-29T15:00:00Z", "end_time": "2024-05-27T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p>Nekun ja Pätkiksen voi tavata parittomien viikkojen maanantaisin klo 18-19 juhannukseen asti.</p><p>Veitin voi tavata parillisten viikkojen maanantaisin klo 18-19 toukokuun loppuun asti.</p>", "sv": "<p>Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!</p><p>Du kan träffa Nekku och Pätkis på måndagar udda veckor kl 18-19 fram till midsommar.</p><p>Du kan träffa Veiti på måndagar jämna veckor 18-19 fram till slutet av maj.</p>", "en": "<p>Hello reader! On Mondays in the library you can read to a reading dog!</p><p>You can meet Neku and Pätkis on Mondays of odd weeks at 18-19 until Midsummer.</p><p>You can meet Veit on Mondays of even weeks from 18-19 until the end of May.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "name": { "fi": "Lukukoira tavattavissa", "sv": "Läshund finns tillgänglig", "en": "Reading dog available" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xci2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agho7xcjpm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xci6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcjby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcjfe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcjiq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcjly/?format=api" } ], "images": [ { "id": 150665, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-18T05:42:17.383444Z", "last_modified_time": "2024-04-18T05:42:17.383463Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Lukukoirat_Veiti_Nekku_ja_P%C3%A4tkis.png", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kolme koiraa kirjahyllyjen edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150665/?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-04-18T06:00:20.649370Z", "last_modified_time": "2024-04-18T06:00:20.649395Z", "date_published": "2024-04-18T05:41:00Z", "start_time": "2024-04-22T15:00:00Z", "end_time": "2024-06-17T16: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, "provider_contact_info": null, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p>Nekun ja Pätkiksen voi tavata parittomien viikkojen maanantaisin klo 18-19 juhannukseen asti.</p><p>Veitin voi tavata parillisten viikkojen maanantaisin klo 18-19 toukokuun loppuun asti.</p>", "sv": "<p>Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!</p><p>Du kan träffa Nekku och Pätkis på måndagar udda veckor kl 18-19 fram till midsommar.</p><p>Du kan träffa Veiti på måndagar jämna veckor 18-19 fram till slutet av maj.</p>", "en": "<p>Hello reader! On Mondays in the library you can read to a reading dog!</p><p>You can meet Neku and Pätkis on Mondays of odd weeks at 18-19 until Midsummer.</p><p>You can meet Veit on Mondays of even weeks from 18-19 until the end of May.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "name": { "fi": "Lukukoira tavattavissa", "sv": "Läshund finns tillgänglig", "en": "Reading dog available" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agho7xcjpm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghozw5epm", "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:p1947/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T15:48:48.172364Z", "last_modified_time": "2024-04-17T15:53:30.881847Z", "date_published": null, "start_time": "2024-04-25T07:00:00Z", "end_time": "2024-04-25T09: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, "provider_contact_info": null, "description": { "fi": "<p>Hello Seniori-tapahtuma</p><p>Tapahtuma on suunnattu yli 55-vuotiaille, vieraskielisille espoolaisille.</p><p>Ohjelma<br>10.00 - 10.15 musiikkituokio, Espoon musiikkiopisto EMO <br>10.15 - 10.30 Satu Venhola tervetulotoivotus, Espoo kaupunki <br>10.30 - 10.50 tuolijumppatuokio, Espoon liikuntapalvelut<br>10.50 - 12.00 Tutustumista ständitoriin, jossa voit tutustua erilaisiin vapaa-ajan mahdollisuuksiin ja kahvitarjoiluun</p><p>Tapahtuman yhteinen kieli on helppo suomi.</p><p>Tapahtuma tukee moninaisuutta ja juhlistaa eri kulttuureista tulevia ikääntyneitä.</p>" }, "location_extra_info": { "fi": "Stage " }, "provider": { "fi": "Mukes, Espoon kaupunki, " }, "short_description": { "fi": "Hello Seniori-tapahtuma kirjaston Stagella 25.4. klo 10-12 " }, "name": { "fi": "Hello Seniori-tapahtuma" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghozw5epm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63359", "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:32/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "15 €" }, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150604, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T11:12:58.223494Z", "last_modified_time": "2024-04-16T11:12:58.223510Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749101.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150604/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-16T11:12:58.202498Z", "last_modified_time": "2024-04-17T15:13:35.590961Z", "date_published": null, "start_time": "2024-05-18T12: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, "provider_contact_info": null, "description": { "fi": "<p>Balettikoulu Pirjo Kuhan taiteen perusopetuksen isot ja pienet oppilaat esittävät opintojensa tuloksia ja taitojaan perinteisessä kevätnäytöksessä.</p><p>Voit ostaa lipun Malmitalolta Balettikoulu Pirjo Kuhan myyntipisteeltä tuntia ennen näytöstä tai olemalla yhteydessä Balettikouluun, tiedustelut numeroon 0407367865.</p><p>Liput: 15 € Malmitalolta Balettikoulu Pirjo Kuhan järjestämältä myyntipisteeltä tai ennakkoon Balettikoulusta.</p><p>Näytöksen kesto n. 60 min</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Balettikoulu Pirjo Kuhan taiteen perusopetuksen isot ja pienet oppilaat esittävät opintojensa tuloksia ja taitojaan perinteisessä kevätnäytöksessä." }, "name": { "fi": "Balettikoulu Pirjo Kuhan kevätnäytös" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CC5DC2E09ADBC52487CA130A020E5FD8/Balettikoulu_Pirjo_Kuhan_kevatnaytos" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63359/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63408", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/vapaa-tanssikoulu/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150661, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T13:13:46.416291Z", "last_modified_time": "2024-04-17T13:13:46.416304Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739838.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150661/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T13:13:46.394928Z", "last_modified_time": "2024-04-17T13:13:46.473451Z", "date_published": null, "start_time": "2024-05-05T12: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, "provider_contact_info": null, "description": { "fi": "<p>Vapaa Tanssikoulu järjestää joka kevät oppilasnäytökset, joissa esiintyy koulun eri-ikäisiä oppilaita. Tervetuloa katsomaan!</p><p>Vapaa Tanssikoulu on tanssitaiteen perusopetusta antava tanssikoulu, joka toimii Itä-Helsingin alueella. Teemme yhteistyötä Laajasalon opiston kanssa.</p><p>Vapaa Tanssikoulu järjestää keväällä 2024 kolme näytöstä Stoassa. Jokaisessa näytöksessä esiintyvät eri tanssiryhmät.<br> <br>la 4.5. klo 15 ja klo 17<br>su 5.5. klo 15<br> <br>Yhden näytöksen kesto on noin 40min.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Vapaa Tanssikoulu järjestää joka kevät oppilasnäytökset, joissa esiintyy koulun eri-ikäisiä oppilaita. Tervetuloa katsomaan!" }, "name": { "fi": "Vapaan tanssikoulun kevätnäytös" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9993CA04CFE4AAA6FC989E3FA6602B8F/Vapaan_tanssikoulun_kevatnaytos" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63408/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63407", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/vapaa-tanssikoulu/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150660, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T13:13:46.150175Z", "last_modified_time": "2024-04-17T13:13:46.150188Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739836.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150660/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T13:13:46.128529Z", "last_modified_time": "2024-04-17T13:13:46.204622Z", "date_published": null, "start_time": "2024-05-04T14: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, "provider_contact_info": null, "description": { "fi": "<p>Vapaa Tanssikoulu järjestää joka kevät oppilasnäytökset, joissa esiintyy koulun eri-ikäisiä oppilaita. Tervetuloa katsomaan!</p><p>Vapaa Tanssikoulu on tanssitaiteen perusopetusta antava tanssikoulu, joka toimii Itä-Helsingin alueella. Teemme yhteistyötä Laajasalon opiston kanssa.</p><p>Vapaa Tanssikoulu järjestää keväällä 2024 kolme näytöstä Stoassa. Jokaisessa näytöksessä esiintyvät eri tanssiryhmät.<br> <br>la 4.5. klo 15 ja klo 17<br>su 5.5. klo 15<br> <br>Yhden näytöksen kesto on noin 40min.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Vapaa Tanssikoulu järjestää joka kevät oppilasnäytökset, joissa esiintyy koulun eri-ikäisiä oppilaita. Tervetuloa katsomaan!" }, "name": { "fi": "Vapaan tanssikoulun kevätnäytös" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A443F7EAD7131CEC191BED0DDEA60298/Vapaan_tanssikoulun_kevatnaytos" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63407/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63406", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/vapaa-tanssikoulu/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150659, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T13:13:45.978189Z", "last_modified_time": "2024-04-17T13:13:45.978204Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739835.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150659/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T13:13:45.949154Z", "last_modified_time": "2024-04-17T13:13:46.038250Z", "date_published": null, "start_time": "2024-05-04T12: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, "provider_contact_info": null, "description": { "fi": "<p>Vapaa Tanssikoulu järjestää joka kevät oppilasnäytökset, joissa esiintyy koulun eri-ikäisiä oppilaita. Tervetuloa katsomaan!</p><p>Vapaa Tanssikoulu on tanssitaiteen perusopetusta antava tanssikoulu, joka toimii Itä-Helsingin alueella. Teemme yhteistyötä Laajasalon opiston kanssa.</p><p>Vapaa Tanssikoulu järjestää keväällä 2024 kolme näytöstä Stoassa. Jokaisessa näytöksessä esiintyvät eri tanssiryhmät.<br> <br>la 4.5. klo 15 ja klo 17<br>su 5.5. klo 15<br> <br>Yhden näytöksen kesto on noin 40min.</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Vapaa Tanssikoulu järjestää joka kevät oppilasnäytökset, joissa esiintyy koulun eri-ikäisiä oppilaita. Tervetuloa katsomaan!" }, "name": { "fi": "Vapaan tanssikoulun kevätnäytös" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/29DBD5A2953A4F82868D4FA64C6BF309/Vapaan_tanssikoulun_kevatnaytos" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63406/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoxsc2bu", "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:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T10:37:59.746387Z", "last_modified_time": "2024-04-17T11:57:12.644359Z", "date_published": null, "start_time": "2024-04-27T10:00:00Z", "end_time": "2024-04-27T13: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, "provider_contact_info": null, "description": { "fi": "<p>Releet reilaan!<br>Tule päivittämään kaappiin jäänyt t-paitasi tai muu asuste uuteen uskoon Sellon tuunauspajassa! Kirjasto tarjoaa glittervinyylipainatukset, helmiä ja helyjä, sekä tietysti ompelukoneet.<br>Tuo mukanasi puuvillapohjainen vaate tai kangas. Löydä itsestäsi Dancing Queen ja suuntaa upean asusi kanssa vaikka vappubileisiin! <br>Viihdytyksestä vastaa samaan aikaan Sellon Musafestarit.<br>Vetäjinä kirjaston työntekijät Merituuli, Saija, Laura ja Päivi<br></p>", "sv": "<p>Kom och uppdatera den där t-shirten eller någon annan klädsel som blivit liggande i garderoben på Sellos makeover-verkstad! Biblioteket erbjuder glittriga vinyltryck, pärlor och prydnadssaker, och naturligtvis symaskiner.<br>Ta med ett bomullsbaserat plagg eller tyg. Upptäck dig själv som en dansande drottning och gå ut med din fantastiska outfit, till och med till en första maj-fest!</p>", "en": "<p>Come and update that t-shirt or other outfit that's been left in your closet at Sello's makeover workshop! The library offers glitter vinyl prints, beads and trinkets, and of course sewing machines.<br>Bring a cotton-based garment or fabric. Discover yourself as a dancing queen and head out with your fabulous outfit, even to a May Day party!</p>" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": null, "short_description": { "fi": "Tule päivittämään kaappiin jäänyt t-paitasi tai muu asuste uuteen uskoon Sellon tuunauspajassa!", "sv": "Kom och uppdatera den där t-shirten eller någon annan klädsel som blivit liggande i garderoben på Sellos makeover-verkstad! ", "en": "Come and update that t-shirt or other outfit that's been left in your closet at Sello's makeover workshop! " }, "name": { "fi": "Korota kuteet- paja", "sv": "Verkstad för tuning", "en": "Sello's makeover workshop" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoxsc2bu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghoyabri4", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabqfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabqje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabqqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabquy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabqyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabq3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabq6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabrca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabrfy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjcrqrdsa/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T11:21:13.246143Z", "last_modified_time": "2024-04-17T11:21:13.246167Z", "date_published": null, "start_time": "2024-08-07T14:00:00Z", "end_time": "2024-10-09T15: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, "provider_contact_info": null, "description": { "fi": "<p>Toiminnallinen ryhmä kokoontuu erilaisten teemojen parissa. Ryhmäkerroilla jaetaan tietoa ja työkaluja arjen tueksi sekä tehdään yhdessä erilaisia harjoitteita. Ryhmäkertojen ohjaajana toimii hankkeen työntekijä.<br>Esimerkkejä ryhmän aiheista:<br>-\tHuolien vaikutus kehoon ja mieleen<br>-\tItsemyötätunto ja voimavarat<br>-\tKiitollisuus ja vahvuudet<br>-\tLuonnon vaikutus hyvinvointiin<br>Ryhmä on kaikille avoin ja maksuton!<br>Ryhmä kokoontuu kerran viikossa keskiviikkoisin Espoon Leppävaaran Sellon kirjastossa osoitteessa Leppävaarankatu 9, 02600 Espoo. Ensimmäinen ryhmäkerta on 7.8. ja viimeinen 9.10. Ilmoittautumiset 5.8. mennessä Tiinalle, tiina.herttuainen@elary.fi tai 041 315 5437.</p><p>Huolet hallintaan –hanke<br>Huolet hallintaan -hankkeen toiminta on matalan kynnyksen ryhmätoimintaa henkilöille, joilla erilaiset arjen haasteet ja/tai maailmantilanne aiheuttaa huolta ja ahdistuksen tunteita.<br>Ryhmien tarkoituksena on mahdollistaa osallistujia löytämään tapoja käsitellä huolia ja ahdistuksen tunteita. Kerroilla on omat teemansa, joihin osallistujat pystyvät myös vaikuttamaan. Ryhmät ovat toiminnallisia ja ammattilaisen ohjaamia. Ryhmät kokoontuvat Varsinais-Suomen ja Uudenmaan alueella. Ryhmien toivekoko on 8–10 osallistujaa. Toiminta mahdollistaa tarvittaessa myös yksilötapaamisia. Ryhmät ovat maksuttomia.</p><p>Hankkeen toiminta on tarkoitettu kaiken ikäisille, erilaisissa elämäntilanteissa oleville aikuisille henkilöille, joilla ei ole akuuttia mielenterveys- ja/tai päihdediagnoosia. Huolet hallintaan -hanketta rahoittaa sosiaali- ja terveysministeriö järjestöavustuksilla (2023–2025).<br>Hankkeen kotisivut: Huolet hallintaan -hanke – ELÄMÄNLAATU RY (elary.fi) </p><p>Elämänlaatu ry<br>Elämänlaatu ry on 2011 perustettu, voittoa tavoittelematon yleishyödyllinen yhdistys. Yhdistyksen tavoitteena on tukea haastavassa elämäntilanteessa olevien ihmisten elämänlaatua yhteisöllisellä ja tavoitteellisella toiminnalla.<br></p>", "sv": "<p>Den funktionella gruppen träffas för att diskutera olika ämnen. Grupperna delar information och verktyg för att stödja vardagen. På finska.</p>", "en": "<p>The functional group meets on a variety of topics. The groups share information and tools to support everyday life.<br>In Finnish.</p>" }, "location_extra_info": { "fi": "Elina tai Mauri" }, "provider": { "fi": "Elämänlaatu ry" }, "short_description": { "fi": "Toiminnallinen ryhmä kokoontuu erilaisten teemojen parissa. Ryhmäkerroilla jaetaan tietoa ja työkaluja arjen tueksi.", "sv": "Den funktionella gruppen träffas för att diskutera olika ämnen. Grupperna delar information och verktyg för att stödja vardagen. På finska.", "en": "The functional group meets on a variety of topics. The groups share information and tools to support everyday life.\nIn Finnish." }, "name": { "fi": "Huolet hallintaan -ryhmä", "sv": "Hantera bekymmer - grupp", "en": "Managing your worries- group" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghoyabri4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63404", "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:29/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150654, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T11:13:48.303620Z", "last_modified_time": "2024-04-17T11:13:48.303636Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749417.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150654/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T11:13:48.275893Z", "last_modified_time": "2024-04-17T11:13:48.374743Z", "date_published": null, "start_time": "2024-05-11T10: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, "provider_contact_info": null, "description": { "fi": "<p>Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.</p><p>Kukistettuaan maailmanluokan roistoja rohkeudellaan ja hurjilla taistelutaidoillaan, kohtalo kutsuu lohikäärmesoturi Pon laittamaan pisteen ainaiselle seikkailemiselle. Tarkemmin sanoen, hänestä halutaan Rauhan laakson henkinen johtaja.</p><p>Tässä on kuitenkin muutama ongelma. Ensinnäkin Po tietää henkisestä johtajuudesta yhtä vähän kuin paleodieetistä, ja toiseksi hänen on löydettävä ja koulutettava uusi lohikäärmesoturi ennen kuin voi vastaanottaa uuden ylevän asemansa.</p><p>Kuvioihin ilmestyy lisäksi paha ja voimakas Kameleontti, pieni lisko, joka osaa muuttaa muotoaan miksi tahansa olennoksi. Kameleontti on iskenyt silmänsä Pon Viisauden sauvaan, jolla hän voisi kutsua henkimaailmasta takaisin kaikki Pon sinne lähettämät vastustajat.</p><p>Po löytää avukseen nokkelan arokettu Zhenin, varkaan, joka käy Pon hermoille, mutta osoittautuu taidoiltaan korvaamattomaksi. <br>Hullunkurisen kaksikon on tehtävä yhteistyötä suojellakseen Rauhan laaksoa Kameleontin liskonkynsiltä. Samalla Po myös ymmärtää, että sankareita voi löytyä odottamattomista paikoista.</p><p>Kung Fu Panda 4 -elokuvan on ohjannut Mike Mitchell (Trolls, Shrek ja ikuinen onni) ja tuottanut Rebecca Huntley (Hurja Jengi).</p><p>Elokuvassa puhutaan suomea.</p><p>Kesto 94 min<br>Ikäraja 7<br>Ensi-ilta 22.3.2024</p>", "sv": "<p>I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.</p><p>Efter att, i tre dödsföraktande äventyr, ha besegrat skurkar i världsklass med sitt oöverträffade mod och sina galna kampsportfärdigheter, uppmanar ödet Po, Drakkrigaren, att... ta och lugna ner sig lite. Mer specifikt, han är utvald att bli andlig ledare i Fredens Dal.</p><p>Det ställer till med ett par uppenbara problem. För det första, så vet Po lika mycket om andligt ledarskap som han gör om Paleo-dieten, och för det andra måste han snabbt hitta och träna upp en ny Drakkrigare innan han kan inta sin nya upphöjda position.</p><p>Övrigt: Ännu värre är att det nyligen dykt upp en elak, mäktig magiker; Kameleonten, en liten ödla som kan förvandla sig till vilken varelse som helst, stor som liten. Kameleonten håller sina giriga, pliriga små ögon på Pos Visdomens Stav, som skulle kunna ge henne kraften att återkalla alla de mästerskurkar som Po besegrat och skickat till andevärlden.</p><p>Så, Po kommer att behöva lite hjälp. Han hittar den (typ?) i form av den kvicka och listiga tjuven Zhen, en Korsakräv som verkligen tar sig in under pälsen på Po men vars färdigheter kommer att visa sig ovärderliga. För att skydda Fredens Dal från Kameleontens reptilklor måste denna komiska, udda duo samarbeta. Samtidigt kommer Po att upptäcka att hjältar kan finnas på de mest oväntade platserna.</p><p>Språk: finska</p><p>Längd 94 min <br>Åldersgräns 7 <br>Premiär 22 mars 2024</p>", "en": "<p>This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4.</p><p>After three death-defying adventures defeating world-class villains with his unmatched courage and mad martial arts skills, Po, the Dragon Warrior, is called upon by destiny to … give it a rest already. More specifically, he’s tapped to become the Spiritual Leader of the Valley of Peace.</p><p>That poses a couple of obvious problems. First, Po knows as much about spiritual leadership as he does about the paleo diet, and second, he needs to quickly find and train a new Dragon Warrior before he can assume his new lofty position.</p><p>Even worse, there’s been a recent sighting of a wicked, powerful sorceress, Chameleon, a tiny lizard who can shapeshift into any creature, large or small. And Chameleon has her greedy, beady little eyes on Po’s Staff of Wisdom, which would give her the power to re-summon all the master villains whom Po has vanquished to the spirit realm.</p><p>So, Po’s going to need some help. He finds it (kinda?) in the form of crafty, quick-witted thief Zhen, a corsac fox who really gets under Po’s fur but whose skills will prove invaluable. In their quest to protect the Valley of Peace from Chameleon’s reptilian claws, this comedic odd-couple duo will have to work together. In the process, Po will discover that heroes can be found in the most unexpected places.</p><p>Language: Finnish</p><p>Duration 94 min<br>Age rating 7 <br>Premiere March 22, 2024</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.", "sv": "I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.", "en": "This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4." }, "name": { "fi": "Kung Fu Panda 4 (7) – Kino Helios", "sv": "Kung Fu Panda 4 (7) – Kino Helios", "en": "Kung Fu Panda 4 (7) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/34C621AFF78F4C4197BD2188E8B61069/Kung_Fu_Panda_4_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/34C621AFF78F4C4197BD2188E8B61069/Kung_Fu_Panda_4_7_", "en": "http://www.malmitalo.fi/en/events/event/34C621AFF78F4C4197BD2188E8B61069/Kung_Fu_Panda_4_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63404/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63403", "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:29/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios", "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=kino+helios" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150653, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-17T11:13:46.701744Z", "last_modified_time": "2024-04-17T11:13:46.701760Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749120.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150653/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-17T11:13:46.658514Z", "last_modified_time": "2024-04-17T11:13:46.783025Z", "date_published": null, "start_time": "2024-05-04T12: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, "provider_contact_info": null, "description": { "fi": "<p>Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.</p><p>Kukistettuaan maailmanluokan roistoja rohkeudellaan ja hurjilla taistelutaidoillaan, kohtalo kutsuu lohikäärmesoturi Pon laittamaan pisteen ainaiselle seikkailemiselle. Tarkemmin sanoen, hänestä halutaan Rauhan laakson henkinen johtaja.</p><p>Tässä on kuitenkin muutama ongelma. Ensinnäkin Po tietää henkisestä johtajuudesta yhtä vähän kuin paleodieetistä, ja toiseksi hänen on löydettävä ja koulutettava uusi lohikäärmesoturi ennen kuin voi vastaanottaa uuden ylevän asemansa.</p><p>Kuvioihin ilmestyy lisäksi paha ja voimakas Kameleontti, pieni lisko, joka osaa muuttaa muotoaan miksi tahansa olennoksi. Kameleontti on iskenyt silmänsä Pon Viisauden sauvaan, jolla hän voisi kutsua henkimaailmasta takaisin kaikki Pon sinne lähettämät vastustajat.</p><p>Po löytää avukseen nokkelan arokettu Zhenin, varkaan, joka käy Pon hermoille, mutta osoittautuu taidoiltaan korvaamattomaksi. <br>Hullunkurisen kaksikon on tehtävä yhteistyötä suojellakseen Rauhan laaksoa Kameleontin liskonkynsiltä. Samalla Po myös ymmärtää, että sankareita voi löytyä odottamattomista paikoista.</p><p>Kung Fu Panda 4 -elokuvan on ohjannut Mike Mitchell (Trolls, Shrek ja ikuinen onni) ja tuottanut Rebecca Huntley (Hurja Jengi).</p><p>Elokuvassa puhutaan suomea.</p><p>Kesto 94 min<br>Ikäraja 7<br>Ensi-ilta 22.3.2024</p>", "sv": "<p>I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.</p><p>Efter att, i tre dödsföraktande äventyr, ha besegrat skurkar i världsklass med sitt oöverträffade mod och sina galna kampsportfärdigheter, uppmanar ödet Po, Drakkrigaren, att... ta och lugna ner sig lite. Mer specifikt, han är utvald att bli andlig ledare i Fredens Dal.</p><p>Det ställer till med ett par uppenbara problem. För det första, så vet Po lika mycket om andligt ledarskap som han gör om Paleo-dieten, och för det andra måste han snabbt hitta och träna upp en ny Drakkrigare innan han kan inta sin nya upphöjda position.</p><p>Övrigt: Ännu värre är att det nyligen dykt upp en elak, mäktig magiker; Kameleonten, en liten ödla som kan förvandla sig till vilken varelse som helst, stor som liten. Kameleonten håller sina giriga, pliriga små ögon på Pos Visdomens Stav, som skulle kunna ge henne kraften att återkalla alla de mästerskurkar som Po besegrat och skickat till andevärlden.</p><p>Så, Po kommer att behöva lite hjälp. Han hittar den (typ?) i form av den kvicka och listiga tjuven Zhen, en Korsakräv som verkligen tar sig in under pälsen på Po men vars färdigheter kommer att visa sig ovärderliga. För att skydda Fredens Dal från Kameleontens reptilklor måste denna komiska, udda duo samarbeta. Samtidigt kommer Po att upptäcka att hjältar kan finnas på de mest oväntade platserna.</p><p>Språk: finska</p><p>Längd 94 min <br>Åldersgräns 7 <br>Premiär 22 mars 2024</p>", "en": "<p>This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4.</p><p>After three death-defying adventures defeating world-class villains with his unmatched courage and mad martial arts skills, Po, the Dragon Warrior, is called upon by destiny to … give it a rest already. More specifically, he’s tapped to become the Spiritual Leader of the Valley of Peace.</p><p>That poses a couple of obvious problems. First, Po knows as much about spiritual leadership as he does about the paleo diet, and second, he needs to quickly find and train a new Dragon Warrior before he can assume his new lofty position.</p><p>Even worse, there’s been a recent sighting of a wicked, powerful sorceress, Chameleon, a tiny lizard who can shapeshift into any creature, large or small. And Chameleon has her greedy, beady little eyes on Po’s Staff of Wisdom, which would give her the power to re-summon all the master villains whom Po has vanquished to the spirit realm.</p><p>So, Po’s going to need some help. He finds it (kinda?) in the form of crafty, quick-witted thief Zhen, a corsac fox who really gets under Po’s fur but whose skills will prove invaluable. In their quest to protect the Valley of Peace from Chameleon’s reptilian claws, this comedic odd-couple duo will have to work together. In the process, Po will discover that heroes can be found in the most unexpected places.</p><p>Language: Finnish</p><p>Duration 94 min<br>Age rating 7 <br>Premiere March 22, 2024</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tänä keväänä maailman epätodennäköisin kung fu -mestari Po palaa valkokankaille DreamWorksin uudessa elokuvassa Kung Fu Panda 4.", "sv": "I vår, kommer komedi-ikonen Jack Black, för första gången på nästan ett årtionde, tillbaka i rollen som Po, världens mest osannolika kung fu-mästare, i ett roligt nytt kapitel i Dreamworks Animations älskade actionkomedi-franchise: Kung Fu Panda 4.", "en": "This spring, for the first time in almost a decade, comedy icon Jack Black returns to his role as Po, the world’s most unlikely kung fu master, with a hilarious, butt-kicking new chapter in DreamWorks Animation’s beloved action-comedy franchise: Kung Fu Panda 4." }, "name": { "fi": "Kung Fu Panda 4 (7) – Kino Helios", "sv": "Kung Fu Panda 4 (7) – Kino Helios", "en": "Kung Fu Panda 4 (7) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_", "en": "http://www.malmitalo.fi/en/events/event/37F934280D610080BAE906F9512CE737/Kung_Fu_Panda_4_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63403/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:74a312aa-f73b-41c4-ae24-963a79a6f3ab", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:50610/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=Testi_Tapahtuma_Uusituilla_URL-Kentill_TL-DG-230220241114196174" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 140578, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-13T21:46:39.113296Z", "last_modified_time": "2024-04-13T21:46:39.113312Z", "name": "SILJA SERENADE Helsinki Marko Stampehl", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/e99fbec6-f8f0-ee11-904b-002248a120b6", "cropping": "", "photographer_name": "Marko Stampehl", "alt_text": "SILJA SERENADE Helsinki Marko Stampehl", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/140578/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "created_time": "2024-04-11T13:37:58.080134Z", "last_modified_time": "2024-04-17T10:42:22.061600Z", "date_published": "2024-04-11T13:12:53Z", "start_time": "2024-04-17T21:00:00Z", "end_time": "2024-04-18T11:00:19Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 0, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 0, "minimum_attendee_capacity": 0, "enrolment_start_time": "2024-02-21T06:00:00+02:00", "enrolment_end_time": "2024-04-09T08:30:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<div><div>Testi Tapahtuma Uusitulla kuvakentällä TL-DG-16.04.2024 </div></div>" }, "location_extra_info": null, "provider": { "fi": "Tomi Lepistö" }, "short_description": { "fi": "Testi Tapahtuma Uusitulla kuvakentällä TL-DG-16.04.2024" }, "name": { "fi": "Testi Tapahtuma Uusitulla kuvakentällä TL-DG-16.04.2024" }, "info_url": { "fi": "https://www.hel.fi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:74a312aa-f73b-41c4-ae24-963a79a6f3ab/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:8393fec8-bc73-4f09-b264-78389c1e424e", "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/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "123456789" }, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/35124c15-bc1c-441b-9ecc-e39fbd0d2a5e?readableEventId=MKtest547106853" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16486/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20513/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2024-04-17T07:40:42.819005Z", "last_modified_time": "2024-04-17T09:16:08.483050Z", "date_published": "2024-04-17T07:32:32Z", "start_time": "2024-04-18T06:30:00Z", "end_time": "2024-04-18T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 1, "audience_max_age": 99, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 101, "minimum_attendee_capacity": 2, "enrolment_start_time": "2024-04-17T08:00:00+03:00", "enrolment_end_time": "2024-04-18T08:00:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<div><div>MKtest LE51 suostumustäppätest LONG DESC</div></div>" }, "location_extra_info": null, "provider": { "fi": "MKtest järjestäjä" }, "short_description": { "fi": "MKtest LE51 suostumustäppätest SHORT DESC" }, "name": { "fi": "MKtest LE51 suostumustäppätest" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:8393fec8-bc73-4f09-b264-78389c1e424e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:aghowmdbg4", "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/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 150641, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-17T08:32:50.625429Z", "last_modified_time": "2024-04-17T08:33:20.065259Z", "name": "20220811_160249_HDR.jpg", "url": "https://linkedevents.api.test.hel.ninja/media/images/20220811_160249_HDR.jpg", "cropping": "0,83,500,583", "photographer_name": "Suvi", "alt_text": "kukkia", "data_source": "kultus", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150641/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:58/?format=api" } ], "created_time": "2024-04-17T08:33:20.197409Z", "last_modified_time": "2024-04-17T08:34:25.210260Z", "date_published": null, "start_time": "2024-04-30T07:00:00Z", "end_time": "2024-04-30T07:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>Testing photo crop</p>\n", "sv": "", "en": "" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "afad", "sv": "", "en": "" }, "name": { "fi": "Testing photo", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghowmdbg4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:aghopnthg4", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-16T15:38:19.434097Z", "last_modified_time": "2024-04-16T15:38:19.434121Z", "date_published": null, "start_time": "2024-04-29T12:00:00Z", "end_time": "2024-04-29T13: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, "provider_contact_info": null, "description": { "fi": "<p>Joogapsykologia, Meditaatio ja Palveluhenkisyys<br>Aiheesta kertoilee kokenut Intialainen Acarya Dada Bhavottarananda.</p><p>Jooga on tie...rauhasten, kehon ja mielen tasapainoon. Meditaatio yhdessä palveluhenkisyyden kanssa, ylevöittää omaa henkevyyttä ja yhteiskuntaa sinänsä. <br>Dada Bhavottarananda on opettanut joogaa ja mediataatiota Intiassa, Taiwanissa ja Suomessa noin 30 vuotta. Sen lisäksi hän on tehnyt palvelutyötä, kuten hoitanut lastenkoteja, kouluja ja opastanut terveellisiin elämäntapoihin.</p><p>Tervetuloa tutustumaan joogan viisauteen,<br>Ison Omenan kirjaston Stage tilassa, maanantaina 29.4, klo 15.00.</p><p>Vain henkistä rikkautta voi viedä mukanaan seuraavaan elämään, fyysistä tai psyykkistä rikkautta ei voi.</p><p>Järjestäjä Ananda Marga Joogayhteisö Ry.<br></p>", "en": "<p>Yoga Psychology, Meditation and Service</p><p>Indian Acarya Dada Bhavottarananda shares yogic wisdom; Yoga is the way... for glandular, bodily and mental balance. Meditation together with service enriches ones spirit and also the society. </p><p>Dada Bhavottarananda has been teaching yoga and meditation in India, Taiwan and Finland for ab 30 years. Besides he has been doing service such as taking care of children’s homes, schools and providing guidance in healthy life style practices.<br>You are invited to attend yogic wisdom teaching in company,<br>Iso Omenan Kirjasto, Stage, Monday 29.4 at 15.00</p><p>Only spiritual wealth can be taken into the next life, not physical or mental wealth.</p><p>Organiser Ananda Marga Joogayhteisö Ry</p><p><br></p>" }, "location_extra_info": { "fi": "Stage", "en": "Stage " }, "provider": { "fi": "Ananda Marga Joogayhteisö Ry", "en": "Ananda Marga Joogayhteisö Ry" }, "short_description": { "fi": "Joogapsykologia, Meditaatio ja Palveluhenkisyys - luento englanniksi", "en": "Yoga Psychology, Meditation and Service" }, "name": { "fi": "Joogapsykologia, Meditaatio ja Palveluhenkisyys - luento englanniksi", "en": "Yoga Psychology, Meditation and Service" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:aghopnthg4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:aghoognfye", "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/kultus:22/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" }, "info_url": null } ], "data_source": "kultus", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api" } ], "created_time": "2024-04-16T13:30:01.554121Z", "last_modified_time": "2024-04-16T13:32:24.919551Z", "date_published": null, "start_time": "2024-04-25T07:30:00Z", "end_time": "2024-04-26T12: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": "2024-04-16T16:35:00+03:00", "enrolment_end_time": "2024-04-26T14:30:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "description": { "fi": "<p>apodfas</p>\n", "sv": "", "en": "" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Testing", "sv": "", "en": "" }, "name": { "fi": "Suvi testing 16.4.2024", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:aghoognfye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 19236, "next": "